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