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