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