]> andersk Git - gssapi-openssh.git/blame - openssh/Makefile.in
Import of OpenSSH 3.2.2p1
[gssapi-openssh.git] / openssh / Makefile.in
CommitLineData
3c0ef626 1# $Id$
2
700318f3 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@
5
6AUTORECONF=autoreconf
7
3c0ef626 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
700318f3 26PRIVSEP_PATH=@PRIVSEP_PATH@
3c0ef626 27
e9a17296 28PATHS= -DSSHDIR=\"$(sysconfdir)\" \
3c0ef626 29 -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
30 -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
31 -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
e9a17296 32 -D_PATH_SSH_PIDDIR=\"$(piddir)\" \
700318f3 33 -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\" \
e9a17296 34 -DSSH_RAND_HELPER=\"$(libexecdir)/ssh-rand-helper\"
3c0ef626 35
36CC=@CC@
37LD=@LD@
38CFLAGS=@CFLAGS@
39CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
40LIBS=@LIBS@
e9a17296 41LIBPAM=@LIBPAM@
42LIBWRAP=@LIBWRAP@
3c0ef626 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@
e9a17296 54INSTALL_SSH_RAND_HELPER=@INSTALL_SSH_RAND_HELPER@
3c0ef626 55
56@NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
57
e9a17296 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)
3c0ef626 59
700318f3 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 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
3c0ef626 61
62SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
63
700318f3 64SSHDOBJS= 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
3c0ef626 65
700318f3 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
3c0ef626 68MANTYPE = @MANTYPE@
69
70CONFIGFILES=sshd_config.out ssh_config.out moduli.out
71CONFIGFILES_IN=sshd_config ssh_config moduli
72
73PATHSUBS = \
700318f3 74 -D/etc/ssh/ssh_prng_cmds=$(sysconfdir)/ssh_prng_cmds \
e9a17296 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 \
3c0ef626 78 -D/usr/libexec=$(libexecdir) \
79 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
e9a17296 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 \
3c0ef626 83 -D/var/run/sshd.pid=$(piddir)/sshd.pid \
e9a17296 84 -D/etc/ssh/moduli=$(sysconfdir)/moduli \
85 -D/etc/ssh/sshrc=$(sysconfdir)/sshrc \
3c0ef626 86 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \
700318f3 87 -D/var/empty=$(PRIVSEP_PATH) \
3c0ef626 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)
e9a17296 114 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBWRAP) $(LIBPAM) $(LIBS)
3c0ef626 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-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
129 $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
130
131sftp-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
134sftp$(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
e9a17296 137ssh-rand-helper${EXEEXT}: $(LIBCOMPAT) libssh.a ssh-rand-helper.o
138 $(LD) -o $@ ssh-rand-helper.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
139
3c0ef626 140# test driver for the loginrec code - not built by default
141logintest: 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
160clean:
161 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
162 rm -f *.out core
163 (cd openbsd-compat && $(MAKE) clean)
164
165distclean:
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
173veryclean:
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
181mrproper: distclean
182
183catman-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
191distprep: catman-do
700318f3 192 $(AUTORECONF)
3c0ef626 193 (cd scard && $(MAKE) -f Makefile.in distprep)
194
195install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
196install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
197
198scard-install:
199 (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install)
200
201install-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
e9a17296 216 if test ! -z "$(INSTALL_SSH_RAND_HELPER)" ; then \
217 $(INSTALL) -m 0755 -s ssh-rand-helper $(DESTDIR)$(libexecdir)/ssh-rand-helper ; \
218 fi
3c0ef626 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
700318f3 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
3c0ef626 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
3c0ef626 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
269host-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
288host-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
293uninstallall: 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
305uninstall:
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
700318f3 324 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8
3c0ef626 325 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
326 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
This page took 0.100982 seconds and 5 git commands to generate.