]> andersk Git - openssh.git/blame - Makefile.in
- Prepare for 1.2.1pre20
[openssh.git] / Makefile.in
CommitLineData
5881cd60 1prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
42b89914 5libexecdir=@libexecdir@
bb0dd7f6 6mandir=@mandir@
af381f02 7sysconfdir=@sysconfdir@
5881cd60 8
d4f11b59 9SSH_PROGRAM=@bindir@/ssh
736890c4 10ASKPASS_PROGRAM=@libexecdir@/ssh/ssh-askpass
d4f11b59 11
5881cd60 12CC=@CC@
db28aeb5 13PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
d4f11b59 14CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
6a0aeebc 15EXTRA_TARGETS=@GNOME_ASKPASS@
16TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
17f0f4a7 17LIBS=@LIBS@
87e91331 18LIBWRAP=@LIBWRAP@
5881cd60 19AR=@AR@
20RANLIB=@RANLIB@
cf8dd513 21INSTALL=@INSTALL@
6cfb695b 22LDFLAGS=-L. @LDFLAGS@
5881cd60 23
17f0f4a7 24GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
25GNOME_LIBS=`gnome-config --libs gnome gnomeui`
26
847e8865 27OBJS= atomicio.o authfd.o authfile.o auth-krb4.o auth-passwd.o \
28 auth-rhosts.o auth-rh-rsa.o auth-rsa.o auth-skey.o bsd-daemon.o \
884bcb37 29 bsd-login.o bsd-mktemp.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o \
847e8865 30 bufaux.o buffer.o canohost.o channels.o cipher.o clientloop.o \
31 compress.o crc32.o deattack.o helper.o helper.o hostfile.o \
32 log-client.o login.o log-server.o match.o md5crypt.o mpaux.o \
33 packet.o pty.o radix.o readconf.o readpass.o rsa.o servconf.o \
34 serverloop.o sshconnect.o tildexpand.o ttymodes.o uidswap.o \
35 xmalloc.o
5881cd60 36
6cfb695b 37LIBOBJS= atomicio.o authfd.o authfile.o bsd-daemon.o bsd-mktemp.o \
a408af76 38 bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bufaux.o \
39 buffer.o canohost.o channels.o cipher.o compat.o \
40 compress.o crc32.o deattack.o fingerprint.o helper.o \
41 hostfile.o log.o match.o mpaux.o nchan.o packet.o \
847e8865 42 radix.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o \
43 xmalloc.o
6cfb695b 44
45all: $(OBJS) $(TARGETS)
46
47libssh.a: $(LIBOBJS)
48 $(AR) rv $@ $(LIBOBJS)
5881cd60 49 $(RANLIB) $@
50
17f0f4a7 51ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a
6cfb695b 52 $(CC) -o $@ ssh.o sshconnect.o log-client.o readconf.o \
53 clientloop.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 54
847e8865 55sshd: sshd.o auth-rhosts.o auth-krb4.o auth-passwd.o auth-rsa.o \
56 auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o \
57 bsd-login.o md5crypt.o libssh.a
6cfb695b 58 $(CC) -o $@ sshd.o auth-rhosts.o auth-krb4.o auth-passwd.o \
59 auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o \
60 serverloop.o bsd-login.o md5crypt.o $(LDFLAGS) -lssh $(LIBS) $(LIBWRAP)
5881cd60 61
17f0f4a7 62scp: scp.o libssh.a
6cfb695b 63 $(CC) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 64
17f0f4a7 65ssh-add: ssh-add.o log-client.o libssh.a
6cfb695b 66 $(CC) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 67
17f0f4a7 68ssh-agent: ssh-agent.o log-client.o libssh.a
6cfb695b 69 $(CC) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 70
17f0f4a7 71ssh-keygen: ssh-keygen.o log-client.o libssh.a
6cfb695b 72 $(CC) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 73
17f0f4a7 74gnome-ssh-askpass: gnome-ssh-askpass.c
75 $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
76
5881cd60 77clean:
e8162ec0 78 rm -f *.o core $(TARGETS) config.status config.cache config.log
e1a9c08d 79
df16c1f2 80install: all
cf8dd513 81 $(INSTALL) -d $(bindir)
82 $(INSTALL) -d $(sbindir)
83 $(INSTALL) -d $(mandir)
84 $(INSTALL) -d $(mandir)/man1
85 $(INSTALL) -d $(mandir)/man8
d8b40f88 86 $(INSTALL) -s ssh $(bindir)/ssh
87 $(INSTALL) -s scp $(bindir)/scp
88 $(INSTALL) -s ssh-add $(bindir)/ssh-add
89 $(INSTALL) -s ssh-agent $(bindir)/ssh-agent
90 $(INSTALL) -s ssh-keygen $(bindir)/ssh-keygen
91 $(INSTALL) -s sshd $(sbindir)/sshd
847e8865 92 $(INSTALL) -m 644 ssh.1 $(mandir)/man1/ssh.1
93 $(INSTALL) -m 644 scp.1 $(mandir)/man1/scp.1
94 $(INSTALL) -m 644 ssh-add.1 $(mandir)/man1/ssh-add.1
95 $(INSTALL) -m 644 ssh-agent.1 $(mandir)/man1/ssh-agent.1
96 $(INSTALL) -m 644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
97 $(INSTALL) -m 644 sshd.8 $(mandir)/man8/sshd.8
c6aeb966 98 -rm -f $(bindir)/slogin
99 ln -s ssh $(bindir)/slogin
100 -rm -f $(mandir)/man1/slogin.1
101 ln -s ssh.1 $(mandir)/man1/slogin.1
045672f9 102
a2b62424 103 if [ ! -z "@GNOME_ASKPASS@" ] ; then \
5ee321fc 104 $(INSTALL) -d $(libexecdir) ; \
105 $(INSTALL) -d $(libexecdir)/ssh ; \
d8b40f88 106 $(INSTALL) -s @GNOME_ASKPASS@ ${ASKPASS_PROGRAM} ; \
045672f9 107 fi
5881cd60 108
af381f02 109 if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)/sshd_config ]; then \
cf8dd513 110 $(INSTALL) -d $(sysconfdir); \
847e8865 111 $(INSTALL) -m 644 ssh_config $(sysconfdir)/ssh_config; \
112 $(INSTALL) -m 644 sshd_config $(sysconfdir)/sshd_config; \
af381f02 113 fi
114
8946db53 115uninstallall: uninstall
116 -rm -f $(sysconfdir)/ssh_config
117 -rm -f $(sysconfdir)/sshd_config
118 -rmdir $(sysconfdir)
119 -rmdir $(bindir)
120 -rmdir $(sbindir)
121 -rmdir $(mandir)/man1
122 -rmdir $(mandir)/man8
123 -rmdir $(mandir)
124 -rmdir $(libexecdir)
125
126uninstall:
127 -rm -f $(bindir)/ssh
128 -rm -f $(bindir)/scp
129 -rm -f $(bindir)/ssh-add
130 -rm -f $(bindir)/ssh-agent
131 -rm -f $(bindir)/ssh-keygen
132 -rm -f $(sbindir)/sshd
133 -rm -f $(mandir)/man1/ssh.1
134 -rm -f $(mandir)/man1/scp.1
135 -rm -f $(mandir)/man1/ssh-add.1
136 -rm -f $(mandir)/man1/ssh-agent.1
137 -rm -f $(mandir)/man1/ssh-keygen.1
138 -rm -f $(mandir)/man8/sshd.8
139 -rm -f $(bindir)/slogin
140 -rm -f $(mandir)/man1/slogin.1
8946db53 141 -rm -f ${ASKPASS_PROGRAM}
142 -rmdir $(libexecdir)/ssh ;
143
5881cd60 144distclean: clean
e1a9c08d 145 rm -f Makefile config.h core *~
5881cd60 146
147mrproper: distclean
e1a9c08d 148
149veryclean: distclean
d4f11b59 150 rm -f configure config.h.in
151
This page took 0.504968 seconds and 5 git commands to generate.