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