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