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