]> andersk Git - openssh.git/blob - Makefile.in
- (djm) Fix linking of sftp, don't need arc4random any more.
[openssh.git] / Makefile.in
1 # $Id$
2
3 prefix=@prefix@
4 exec_prefix=@exec_prefix@
5 bindir=@bindir@
6 sbindir=@sbindir@
7 libexecdir=@libexecdir@
8 mandir=@mandir@
9 mansubdir=@mansubdir@
10 sysconfdir=@sysconfdir@
11 piddir=@piddir@
12 srcdir=@srcdir@
13 top_srcdir=@top_srcdir@
14
15 DESTDIR=
16 VPATH=@srcdir@
17 SSH_PROGRAM=@bindir@/ssh
18 ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
19
20 CC=@CC@
21 LD=@LD@
22 PATHS=-DETCDIR=\"$(sysconfdir)\" -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
23 CFLAGS=@CFLAGS@
24 CPPFLAGS=@CPPFLAGS@ -I. -I$(srcdir)/openbsd-compat -I$(srcdir) $(PATHS) @DEFS@
25 LIBS=@LIBS@
26 AR=@AR@
27 RANLIB=@RANLIB@
28 INSTALL=@INSTALL@
29 PERL=@PERL@
30 ENT=@ENT@
31 XAUTH_PATH=@XAUTH_PATH@
32 LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
33 EXEEXT=@EXEEXT@
34 SSH_MODE= @SSHMODE@
35
36 INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
37
38 @NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
39
40 TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS)
41
42 LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o cli.o compat.o compress.o crc32.o deattack.o dispatch.o hmac.o hostfile.o key.o kex.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o 
43
44 SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
45
46 SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o dh.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o
47
48 TROFFMAN        = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
49 CATMAN          = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh-keyscan.0 ssh.0 sshd.0 sftp-server.0 sftp.0
50 MANPAGES        = @MANTYPE@
51
52 CONFIGFILES=sshd_config ssh_config primes
53
54 PATHSUBS        = \
55         -D/etc/ssh_config=$(sysconfdir)/ssh_config \
56         -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
57         -D/etc/sshd_config=$(sysconfdir)/sshd_config \
58         -D/usr/libexec=$(libexecdir) \
59         -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
60         -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key \
61         -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
62         -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
63         -D/var/run/sshd.pid=$(piddir)/sshd.pid \
64         -D/etc/primes=$(sysconfdir)/primes \
65         -D/etc/sshrc=$(sysconfdir)/sshrc \
66         -D/usr/X11R6/bin/xauth=$(XAUTH_PATH)
67
68 FIXPATHSCMD     = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
69
70 all: $(TARGETS) $(CONFIGFILES)
71
72 manpages: $(MANPAGES)
73
74 $(LIBSSH_OBJS): config.h
75 $(SSHOBJS): config.h
76 $(SSHDOBJS): config.h
77
78 .c.o:
79         $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
80
81 LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
82 $(LIBCOMPAT): config.h
83         (cd openbsd-compat; $(MAKE))
84
85 libssh.a: $(LIBSSH_OBJS)
86         $(AR) rv $@ $(LIBSSH_OBJS)
87         $(RANLIB) $@
88
89 ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
90         $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
91
92 sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
93         $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
94
95 scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o log-client.o
96         $(LD) -o $@ scp.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
97
98 ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o log-client.o
99         $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
100
101 ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o log-client.o
102         $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
103
104 ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o log-client.o
105         $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
106
107 ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a log-client.o ssh-keyscan.o
108         $(LD) -o $@ ssh-keyscan.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
109
110 sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp-server.o sftp-common.o log-server.o
111         $(LD) -o $@ sftp-server.o sftp-common.o log-server.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
112
113 sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-int.o sftp-common.o log-client.o
114         $(LD) -o $@ sftp.o sftp-client.o sftp-common.o sftp-int.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
115
116 # test driver for the loginrec code - not built by default
117 logintest: logintest.o $(LIBCOMPAT) libssh.a log-client.o loginrec.o
118         $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh log-client.o $(LIBS)
119
120 $(MANPAGES) $(CONFIGFILES)::
121         $(FIXPATHSCMD) $(srcdir)/$@
122
123 clean:
124         (cd openbsd-compat; $(MAKE) clean)
125         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
126         rm -f *.out core
127
128 distclean: clean
129         (cd openbsd-compat; $(MAKE) distclean)
130         rm -f Makefile config.h config.status ssh_prng_cmds *~
131
132 mrproper: distclean
133
134 veryclean: distclean
135         rm -f configure config.h.in *.0
136
137 catman-do:
138         @for f in $(TROFFMAN) ; do \
139                 base=`echo $$f | sed 's/\..*$$//'` ; \
140                 echo "$$f -> $$base.0" ; \
141                 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
142                         >$$base.0 ; \
143         done
144
145 distprep: catman-do
146         autoreconf
147
148 install: manpages $(TARGETS) install-files host-key
149
150 install-files:
151         $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
152         $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
153         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
154         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
155         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
156         $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
157         $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
158         $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
159         $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
160         $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
161         $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
162         $(INSTALL) -m 0775 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
163         $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
164         @NO_SFTP@$(INSTALL) -m 0755 -s sftp $(DESTDIR)$(bindir)/sftp
165         @NO_SFTP@$(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(libexecdir)/sftp-server
166         $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
167         $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
168         $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
169         $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
170         $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
171         $(INSTALL) -m 644 ssh-keyscan.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
172         $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
173         @NO_SFTP@$(INSTALL) -m 644 sftp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
174         @NO_SFTP@$(INSTALL) -m 644 sftp-server.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
175         -rm -f $(DESTDIR)$(bindir)/slogin
176         ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
177         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
178         ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
179         @FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin
180         if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
181                 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
182         fi
183         if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
184                 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
185         else \
186                 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
187         fi
188         if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
189                 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
190         else \
191                 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
192         fi
193         if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
194                 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
195                 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
196                         $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
197                 else \
198                         echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
199                 fi ; \
200         fi
201         if [ ! -f $(DESTDIR)$(sysconfdir)/primes ]; then \
202                 $(INSTALL) -m 644 primes.out $(DESTDIR)$(sysconfdir)/primes; \
203         else \
204                 echo "$(DESTDIR)$(sysconfdir)/primes already exists, install will not overwrite"; \
205         fi
206
207 host-key: ssh-keygen$(EXEEXT)
208         if [ -z "$(DESTDIR)" ] ; then \
209                 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
210                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
211                 else \
212                         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
213                 fi ; \
214                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
215                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
216                 else \
217                         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
218                 fi ; \
219                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
220                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
221                 else \
222                         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
223                 fi ; \
224         fi ;
225
226 host-key-force: ssh-keygen$(EXEEXT)
227         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
228         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
229         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
230
231 uninstallall:   uninstall
232         -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
233         -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
234         -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
235         -rmdir $(DESTDIR)$(sysconfdir)
236         -rmdir $(DESTDIR)$(bindir)
237         -rmdir $(DESTDIR)$(sbindir)
238         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
239         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
240         -rmdir $(DESTDIR)$(mandir)
241         -rmdir $(DESTDIR)$(libexecdir)
242
243 uninstall: 
244         -rm -f $(DESTDIR)$(bindir)/slogin
245         -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
246         -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
247         -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
248         -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
249         -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
250         -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
251         -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
252         -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
253         -rm -r $(DESTDIR)$(libexecdir)/sftp-server$(EXEEXT)
254         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
255         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
256         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
257         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
258         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
259         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
260         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
261         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
262         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
263         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
This page took 0.06304 seconds and 5 git commands to generate.