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