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