]> andersk Git - openssh.git/blame - Makefile.in
- (djm) Avoid warning on BSDgetopt
[openssh.git] / Makefile.in
CommitLineData
8b061486 1# $Id$
2
5881cd60 3prefix=@prefix@
4exec_prefix=@exec_prefix@
5bindir=@bindir@
6sbindir=@sbindir@
42b89914 7libexecdir=@libexecdir@
bb0dd7f6 8mandir=@mandir@
e0c4d3ac 9mansubdir=@mansubdir@
af381f02 10sysconfdir=@sysconfdir@
19d9ac2a 11piddir=@piddir@
12srcdir=@srcdir@
13top_srcdir=@top_srcdir@
5881cd60 14
ff8ecdb8 15DESTDIR=
d2dcff5f 16VPATH=@srcdir@
d4f11b59 17SSH_PROGRAM=@bindir@/ssh
7f8f5e00 18ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
0426a3b4 19SFTP_SERVER=$(libexecdir)/sftp-server
20
21PATHS= -DETCDIR=\"$(sysconfdir)\" \
22 -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
23 -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
e0c4d3ac 24 -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
25 -D_PATH_SSH_PIDDIR=\"$(piddir)\"
d4f11b59 26
5881cd60 27CC=@CC@
d423d822 28LD=@LD@
0c2fb82f 29CFLAGS=@CFLAGS@
84ceda19 30CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
17f0f4a7 31LIBS=@LIBS@
5881cd60 32AR=@AR@
33RANLIB=@RANLIB@
cf8dd513 34INSTALL=@INSTALL@
a0f84251 35PERL=@PERL@
ad85db64 36ENT=@ENT@
b3ec54b4 37XAUTH_PATH=@XAUTH_PATH@
9c8dbb1b 38LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
3c62e7eb 39EXEEXT=@EXEEXT@
77bb0bca 40SSH_MODE= @SSHMODE@
5881cd60 41
d3083fbd 42INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
43
61e96248 44@NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
2c523de9 45
61e96248 46TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS)
48e671d5 47
06be7c3b 48LIBSSH_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
6cfb695b 49
7b628035 50SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
a5c9cd31 51
bf093080 52SSHDOBJS= 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
a5c9cd31 53
95595a77 54MANPAGES = 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
55MANPAGES_IN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
5d97cfbf 56MANTYPE = @MANTYPE@
a1ec4d79 57
ff4955c9 58CONFIGFILES=sshd_config.out ssh_config.out moduli.out
59CONFIGFILES_IN=sshd_config ssh_config moduli
a1ec4d79 60
b3ec54b4 61PATHSUBS = \
62 -D/etc/ssh_config=$(sysconfdir)/ssh_config \
63 -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
64 -D/etc/sshd_config=$(sysconfdir)/sshd_config \
65 -D/usr/libexec=$(libexecdir) \
66 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
67 -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key \
68 -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
69 -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
70 -D/var/run/sshd.pid=$(piddir)/sshd.pid \
ff4955c9 71 -D/etc/moduli=$(sysconfdir)/moduli \
b3ec54b4 72 -D/etc/sshrc=$(sysconfdir)/sshrc \
b2d818e6 73 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \
74 -D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@
5f4fdfae 75
76FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
77
5d97cfbf 78all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
6cfb695b 79
3dc1102e 80$(LIBSSH_OBJS): config.h
8d88011e 81$(SSHOBJS): config.h
82$(SSHDOBJS): config.h
3dc1102e 83
cb6dabf4 84.c.o:
4bb5c6b9 85 $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
cb6dabf4 86
ad5075bd 87LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
634e0b53 88$(LIBCOMPAT): config.h
f78888c7 89 (cd openbsd-compat; $(MAKE))
f74efc8d 90
3dc1102e 91libssh.a: $(LIBSSH_OBJS)
92 $(AR) rv $@ $(LIBSSH_OBJS)
5881cd60 93 $(RANLIB) $@
94
ad5075bd 95ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
3dc1102e 96 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 97
ad5075bd 98sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
3dc1102e 99 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 100
1fcde3fe 101scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o
102 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 103
72170131 104ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
105 $(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 106
72170131 107ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o
108 $(LD) -o $@ ssh-agent.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 109
72170131 110ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
111 $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 112
72170131 113ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
94796c10 114 $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
f6fdbddf 115
72170131 116sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o
117 $(LD) -o $@ sftp-server.o sftp-common.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
61e96248 118
1fcde3fe 119sftp$(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)
b5e300c2 121
1d7b9b20 122# test driver for the loginrec code - not built by default
72170131 123logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
124 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS)
1d7b9b20 125
95595a77 126$(MANPAGES): $(MANPAGES_IN)
5d97cfbf 127 if test "$(MANTYPE)" = "cat"; then \
95595a77 128 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \
5d97cfbf 129 else \
95595a77 130 manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \
5d97cfbf 131 fi; \
132 if test "$(MANTYPE)" = "man"; then \
95595a77 133 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@; \
5d97cfbf 134 else \
95595a77 135 $(FIXPATHSCMD) $${manpage} > $@; \
5d97cfbf 136 fi
137
95595a77 138$(CONFIGFILES): $(CONFIGFILES_IN)
139 conffile=`echo $@ | sed 's/.out$$//'`; \
140 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
e1a9c08d 141
48e671d5 142clean:
1d7b9b20 143 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
c04f75f1 144 rm -f *.out core
82d95536 145 (cd openbsd-compat; $(MAKE) clean)
48e671d5 146
82d95536 147distclean:
148 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
149 rm -f *.out core
150 rm -f Makefile config.h config.status ssh_prng_cmds *~
71301416 151 (cd openbsd-compat; $(MAKE) distclean)
82d95536 152
153veryclean:
154 rm -f configure config.h.in *.0
155 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
156 rm -f *.out core
c04f75f1 157 rm -f Makefile config.h config.status ssh_prng_cmds *~
82d95536 158 (cd openbsd-compat; $(MAKE) distclean)
48e671d5 159
160mrproper: distclean
161
ce2af031 162catman-do:
95595a77 163 @for f in $(MANPAGES_IN) ; do \
ce2af031 164 base=`echo $$f | sed 's/\..*$$//'` ; \
165 echo "$$f -> $$base.0" ; \
166 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
167 >$$base.0 ; \
168 done
169
170distprep: catman-do
9e0c3e1f 171 autoreconf
172
0bb724ce 173install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
aa7dbcdd 174install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
f528fdf2 175
176install-files:
77bb0bca 177 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
178 $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
179 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
e0c4d3ac 180 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
181 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
77bb0bca 182 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
183 $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
f9bcea07 184 $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
185 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
186 $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
187 $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
b567a40c 188 $(INSTALL) -m 0755 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
f9bcea07 189 $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
d1686b6e 190 @NO_SFTP@$(INSTALL) -m 0755 -s sftp $(DESTDIR)$(bindir)/sftp
0426a3b4 191 @NO_SFTP@$(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(SFTP_SERVER)
e0c4d3ac 192 $(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
193 $(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
194 $(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
195 $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
196 $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
197 $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
198 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
199 @NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
200 @NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
ff8ecdb8 201 -rm -f $(DESTDIR)$(bindir)/slogin
3c62e7eb 202 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
ff8ecdb8 203 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
204 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
cb547f98 205 #@FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin
3c4d4fef 206 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
77bb0bca 207 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
3c4d4fef 208 fi
209 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
ff8ecdb8 210 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
acc92d54 211 else \
212 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
3c4d4fef 213 fi
214 if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
ff8ecdb8 215 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
acc92d54 216 else \
217 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
af381f02 218 fi
d3083fbd 219 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
77bb0bca 220 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
3ed32516 221 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
222 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
acc92d54 223 else \
224 echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
3ed32516 225 fi ; \
d3083fbd 226 fi
ff4955c9 227 if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
228 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
229 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
230 mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
050df9db 231 else \
ff4955c9 232 $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
233 fi ; \
acc92d54 234 else \
ff4955c9 235 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
3c4d4fef 236 fi
af381f02 237
3c62e7eb 238host-key: ssh-keygen$(EXEEXT)
eb37534b 239 if [ -z "$(DESTDIR)" ] ; then \
240 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
241 echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
242 else \
c2207f11 243 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
eb37534b 244 fi ; \
245 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
246 echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
247 else \
c2207f11 248 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
fa08c86b 249 fi ; \
250 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
251 echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
252 else \
c2207f11 253 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
eb37534b 254 fi ; \
f528fdf2 255 fi ;
256
3c62e7eb 257host-key-force: ssh-keygen$(EXEEXT)
c2207f11 258 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
259 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
260 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
6bf4d066 261
8946db53 262uninstallall: uninstall
ff8ecdb8 263 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
264 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
d3083fbd 265 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
ff8ecdb8 266 -rmdir $(DESTDIR)$(sysconfdir)
267 -rmdir $(DESTDIR)$(bindir)
268 -rmdir $(DESTDIR)$(sbindir)
269 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
270 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
271 -rmdir $(DESTDIR)$(mandir)
272 -rmdir $(DESTDIR)$(libexecdir)
8946db53 273
274uninstall:
2c523de9 275 -rm -f $(DESTDIR)$(bindir)/slogin
3c62e7eb 276 -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
277 -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
278 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
279 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
280 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
f6fdbddf 281 -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
61e96248 282 -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
3c62e7eb 283 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
0426a3b4 284 -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
ff8ecdb8 285 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
286 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
287 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
288 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
289 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
61e96248 290 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
f6fdbddf 291 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
ff8ecdb8 292 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
2c523de9 293 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
ff8ecdb8 294 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
This page took 0.752608 seconds and 5 git commands to generate.