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