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