blob: fa12655938c297fac5156d55115b91399718334a [file] [log] [blame]
Ben Lindstromdb41d232002-06-07 03:11:38 +00001# $Id: Makefile.in,v 1.212 2002/06/07 03:11:38 mouring Exp $
Tim Rice0502a472002-05-08 16:04:14 -07002
Tim Ricea7a5d6d2002-05-09 07:05:59 -07003# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@
Damien Millerb797b922001-02-04 23:27:00 +11005
Damien Millerf58c6722002-05-13 13:15:42 +10006AUTORECONF=autoreconf
7
Damien Miller7f6ea021999-10-28 13:25:17 +10008prefix=@prefix@
9exec_prefix=@exec_prefix@
10bindir=@bindir@
11sbindir=@sbindir@
Damien Millere2324551999-11-19 17:18:57 +110012libexecdir=@libexecdir@
Damien Millerd97c2ce2001-09-18 15:06:21 +100013datadir=@datadir@
Damien Miller94388161999-10-29 09:57:31 +100014mandir=@mandir@
Ben Lindstrombc709922001-04-18 18:04:21 +000015mansubdir=@mansubdir@
Damien Miller296a5461999-11-13 10:48:51 +110016sysconfdir=@sysconfdir@
Damien Millerb13c73e2000-01-17 22:02:17 +110017piddir=@piddir@
18srcdir=@srcdir@
19top_srcdir=@top_srcdir@
Damien Miller7f6ea021999-10-28 13:25:17 +100020
Damien Miller7d7c60d2000-01-26 14:37:48 +110021DESTDIR=
Damien Millerc0d73901999-12-27 09:23:58 +110022VPATH=@srcdir@
Damien Millerc7b38ce1999-11-09 10:28:04 +110023SSH_PROGRAM=@bindir@/ssh
Damien Miller606f8802000-09-16 15:39:56 +110024ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
Damien Millerd7686fd2001-02-10 00:40:03 +110025SFTP_SERVER=$(libexecdir)/sftp-server
Ben Lindstromdb41d232002-06-07 03:11:38 +000026SSH_KEYSIGN=$(libexecdir)/ssh-keysign
27RAND_HELPER=$(libexecdir)/ssh-rand-helper
Damien Millerf58c6722002-05-13 13:15:42 +100028PRIVSEP_PATH=@PRIVSEP_PATH@
Damien Millerd7686fd2001-02-10 00:40:03 +110029
Damien Miller05eda432002-02-10 18:32:28 +110030PATHS= -DSSHDIR=\"$(sysconfdir)\" \
Damien Millerd7686fd2001-02-10 00:40:03 +110031 -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
32 -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
Ben Lindstrombc709922001-04-18 18:04:21 +000033 -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
Ben Lindstromdb41d232002-06-07 03:11:38 +000034 -D_PATH_SSH_KEY_SIGN=\"$(SSH_KEYSIGN)\" \
Damien Miller62116dc2001-12-24 01:41:47 +110035 -D_PATH_SSH_PIDDIR=\"$(piddir)\" \
Damien Miller4c954172002-05-13 14:12:05 +100036 -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\" \
Ben Lindstromdb41d232002-06-07 03:11:38 +000037 -DSSH_RAND_HELPER=\"$(RAND_HELPER)\"
Damien Millerc7b38ce1999-11-09 10:28:04 +110038
Damien Miller7f6ea021999-10-28 13:25:17 +100039CC=@CC@
Damien Miller166bd442000-03-16 10:48:25 +110040LD=@LD@
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000041CFLAGS=@CFLAGS@
Damien Miller3c027682001-03-14 11:39:45 +110042CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
Damien Millerd3dcfaf1999-11-09 13:52:33 +110043LIBS=@LIBS@
Tim Rice4cec93f2002-02-26 08:40:48 -080044LIBPAM=@LIBPAM@
45LIBWRAP=@LIBWRAP@
Damien Miller7f6ea021999-10-28 13:25:17 +100046AR=@AR@
47RANLIB=@RANLIB@
Damien Millerd8087f61999-11-25 12:31:26 +110048INSTALL=@INSTALL@
Damien Millere79334a1999-12-29 10:03:37 +110049PERL=@PERL@
Damien Miller8d1fd572000-05-17 21:34:07 +100050ENT=@ENT@
Damien Millera19cf472000-11-29 13:28:50 +110051XAUTH_PATH=@XAUTH_PATH@
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +000052LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
Damien Millerbac2d8a2000-09-05 16:13:06 +110053EXEEXT=@EXEEXT@
Damien Miller78315eb2000-09-29 23:01:36 +110054SSH_MODE= @SSHMODE@
Damien Miller7f6ea021999-10-28 13:25:17 +100055
Damien Miller0437b332000-05-02 09:56:41 +100056INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
Damien Miller6c21c512002-01-22 21:57:53 +110057INSTALL_SSH_RAND_HELPER=@INSTALL_SSH_RAND_HELPER@
Damien Miller0437b332000-05-02 09:56:41 +100058
Damien Miller33804262001-02-04 23:20:18 +110059@NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +000060
Ben Lindstromdb41d232002-06-07 03:11:38 +000061TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} $(SFTP_PROGS)
Damien Miller7f6ea021999-10-28 13:25:17 +100062
Ben Lindstrom88d26ed2002-06-07 01:53:59 +000063LIBSSH_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 fatal.o mac.o msg.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 scard-opensc.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o monitor_wrap.o monitor_fdpass.o
Damien Miller18ccf851999-12-16 13:06:18 +110064
Ben Lindstrome626cf82001-04-14 23:21:50 +000065SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
Damien Millere72b7af1999-12-30 15:08:44 +110066
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000067SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth2-hostbased.o auth2-kbdint.o auth2-none.o auth2-passwd.o auth2-pubkey.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-krb5.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 monitor_mm.o monitor.o
Damien Millere72b7af1999-12-30 15:08:44 +110068
Ben Lindstromdb41d232002-06-07 03:11:38 +000069MANPAGES = 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 ssh-rand-helper.8.out ssh-keysign.8.out
70MANPAGES_IN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-rand-helper.8 ssh-keysign.8
Damien Miller897741e2001-04-16 10:41:46 +100071MANTYPE = @MANTYPE@
Damien Miller645c5982000-01-03 14:42:09 +110072
Damien Millerb5b0af42001-06-27 21:52:32 +100073CONFIGFILES=sshd_config.out ssh_config.out moduli.out
74CONFIGFILES_IN=sshd_config ssh_config moduli
Damien Miller645c5982000-01-03 14:42:09 +110075
Damien Millera19cf472000-11-29 13:28:50 +110076PATHSUBS = \
Damien Miller32e48182002-04-14 19:27:12 +100077 -D/etc/ssh/ssh_prng_cmds=$(sysconfdir)/ssh_prng_cmds \
Damien Miller05eda432002-02-10 18:32:28 +110078 -D/etc/ssh/ssh_config=$(sysconfdir)/ssh_config \
79 -D/etc/ssh/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
80 -D/etc/ssh/sshd_config=$(sysconfdir)/sshd_config \
Damien Millera19cf472000-11-29 13:28:50 +110081 -D/usr/libexec=$(libexecdir) \
82 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
Damien Miller05eda432002-02-10 18:32:28 +110083 -D/etc/ssh/ssh_host_key=$(sysconfdir)/ssh_host_key \
84 -D/etc/ssh/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
85 -D/etc/ssh/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
Damien Millera19cf472000-11-29 13:28:50 +110086 -D/var/run/sshd.pid=$(piddir)/sshd.pid \
Damien Miller05eda432002-02-10 18:32:28 +110087 -D/etc/ssh/moduli=$(sysconfdir)/moduli \
88 -D/etc/ssh/sshrc=$(sysconfdir)/sshrc \
Tim Rice59ea0a02001-03-10 13:50:45 -080089 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \
Damien Millerf58c6722002-05-13 13:15:42 +100090 -D/var/empty=$(PRIVSEP_PATH) \
Tim Rice59ea0a02001-03-10 13:50:45 -080091 -D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@
Damien Miller886c63a2000-01-20 23:13:36 +110092
93FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
94
Damien Miller897741e2001-04-16 10:41:46 +100095all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
Damien Miller18ccf851999-12-16 13:06:18 +110096
Damien Miller16e519c2000-05-09 14:28:55 +100097$(LIBSSH_OBJS): config.h
Ben Lindstrom3deda8b2000-12-22 20:27:43 +000098$(SSHOBJS): config.h
99$(SSHDOBJS): config.h
Damien Miller16e519c2000-05-09 14:28:55 +1000100
Ben Lindstromf5410352000-12-29 21:37:22 +0000101.c.o:
Ben Lindstrom59f68792000-12-30 03:50:04 +0000102 $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
Ben Lindstromf5410352000-12-29 21:37:22 +0000103
Ben Lindstrome03c85d2001-02-01 14:06:11 +0000104LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
Tim Rice13aae5e2001-10-21 17:53:58 -0700105$(LIBCOMPAT): always
Damien Millerf41d6182001-11-12 10:34:22 +1100106 (cd openbsd-compat && $(MAKE))
Tim Rice13aae5e2001-10-21 17:53:58 -0700107always:
Damien Miller7f6ea021999-10-28 13:25:17 +1000108
Damien Miller16e519c2000-05-09 14:28:55 +1000109libssh.a: $(LIBSSH_OBJS)
110 $(AR) rv $@ $(LIBSSH_OBJS)
111 $(RANLIB) $@
Damien Miller7f6ea021999-10-28 13:25:17 +1000112
Ben Lindstrome03c85d2001-02-01 14:06:11 +0000113ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
Damien Miller16e519c2000-05-09 14:28:55 +1000114 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000115
Ben Lindstrome03c85d2001-02-01 14:06:11 +0000116sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
Tim Rice4cec93f2002-02-26 08:40:48 -0800117 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBWRAP) $(LIBPAM) $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000118
Ben Lindstrom4529b702001-05-03 23:39:53 +0000119scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o
120 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000121
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000122ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
123 $(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000124
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000125ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o
126 $(LD) -o $@ ssh-agent.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller16e519c2000-05-09 14:28:55 +1000127
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000128ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
129 $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000130
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000131ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o
132 $(LD) -o $@ ssh-keysign.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
133
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000134ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
Ben Lindstromff2866c2001-08-06 22:56:46 +0000135 $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000136
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000137sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o
138 $(LD) -o $@ sftp-server.o sftp-common.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller33804262001-02-04 23:20:18 +1100139
Ben Lindstrom4529b702001-05-03 23:39:53 +0000140sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-int.o sftp-common.o sftp-glob.o
141 $(LD) -o $@ sftp.o sftp-client.o sftp-common.o sftp-int.o sftp-glob.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7b28dc52000-09-05 13:34:53 +1100142
Kevin Steves94435082001-12-25 04:32:58 +0000143ssh-rand-helper${EXEEXT}: $(LIBCOMPAT) libssh.a ssh-rand-helper.o
144 $(LD) -o $@ ssh-rand-helper.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller62116dc2001-12-24 01:41:47 +1100145
andre2ff7b5d2000-06-03 14:57:40 +0000146# test driver for the loginrec code - not built by default
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000147logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
148 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS)
andre2ff7b5d2000-06-03 14:57:40 +0000149
Ben Lindstrom38862182001-04-27 00:31:07 +0000150$(MANPAGES): $(MANPAGES_IN)
Damien Miller897741e2001-04-16 10:41:46 +1000151 if test "$(MANTYPE)" = "cat"; then \
Ben Lindstrom38862182001-04-27 00:31:07 +0000152 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \
Damien Miller897741e2001-04-16 10:41:46 +1000153 else \
Ben Lindstrom38862182001-04-27 00:31:07 +0000154 manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \
Damien Miller897741e2001-04-16 10:41:46 +1000155 fi; \
156 if test "$(MANTYPE)" = "man"; then \
Ben Lindstrom38862182001-04-27 00:31:07 +0000157 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@; \
Damien Miller897741e2001-04-16 10:41:46 +1000158 else \
Ben Lindstrom38862182001-04-27 00:31:07 +0000159 $(FIXPATHSCMD) $${manpage} > $@; \
Damien Miller897741e2001-04-16 10:41:46 +1000160 fi
161
Ben Lindstrom38862182001-04-27 00:31:07 +0000162$(CONFIGFILES): $(CONFIGFILES_IN)
163 conffile=`echo $@ | sed 's/.out$$//'`; \
164 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
Damien Miller645c5982000-01-03 14:42:09 +1100165
Damien Miller34132e52000-01-14 15:45:46 +1100166clean:
andre2ff7b5d2000-06-03 14:57:40 +0000167 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
Damien Miller7c734052001-10-12 19:15:27 +1000168 rm -f *.out core
Damien Millerf41d6182001-11-12 10:34:22 +1100169 (cd openbsd-compat && $(MAKE) clean)
Damien Miller34132e52000-01-14 15:45:46 +1100170
Damien Miller8f6bc302001-07-14 13:07:43 +1000171distclean:
172 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
173 rm -f *.out core
Damien Miller615f9392000-05-17 22:53:33 +1000174 rm -f Makefile config.h config.status ssh_prng_cmds *~
Damien Miller7c734052001-10-12 19:15:27 +1000175 rm -rf autom4te.cache
Damien Millerf41d6182001-11-12 10:34:22 +1100176 (cd openbsd-compat && $(MAKE) distclean)
177 (cd scard && $(MAKE) distclean)
Damien Miller8f6bc302001-07-14 13:07:43 +1000178
179veryclean:
180 rm -f configure config.h.in *.0
181 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
182 rm -f *.out core
183 rm -f Makefile config.h config.status ssh_prng_cmds *~
Damien Millerf41d6182001-11-12 10:34:22 +1100184 (cd openbsd-compat && $(MAKE) distclean)
185 (cd scard && $(MAKE) distclean)
Damien Miller34132e52000-01-14 15:45:46 +1100186
187mrproper: distclean
188
Ben Lindstrome2e66a22001-04-18 15:46:01 +0000189catman-do:
Ben Lindstrom38862182001-04-27 00:31:07 +0000190 @for f in $(MANPAGES_IN) ; do \
Ben Lindstrome2e66a22001-04-18 15:46:01 +0000191 base=`echo $$f | sed 's/\..*$$//'` ; \
192 echo "$$f -> $$base.0" ; \
193 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
194 >$$base.0 ; \
195 done
Damien Miller34132e52000-01-14 15:45:46 +1100196
Ben Lindstrome2e66a22001-04-18 15:46:01 +0000197distprep: catman-do
Damien Millerf58c6722002-05-13 13:15:42 +1000198 $(AUTORECONF)
Damien Millerf41d6182001-11-12 10:34:22 +1100199 (cd scard && $(MAKE) -f Makefile.in distprep)
Damien Miller262ff172000-06-28 08:24:49 +1000200
Ben Lindstrom0b355722001-06-10 17:43:35 +0000201install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
Ben Lindstrom8103de72001-07-25 16:24:33 +0000202install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
Damien Miller099f5052000-06-22 20:57:11 +1000203
Damien Millerd97c2ce2001-09-18 15:06:21 +1000204scard-install:
Damien Millerf41d6182001-11-12 10:34:22 +1100205 (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install)
Damien Millerd97c2ce2001-09-18 15:06:21 +1000206
207install-files: scard-install
Damien Miller78315eb2000-09-29 23:01:36 +1100208 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
209 $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
210 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
Damien Millerd97c2ce2001-09-18 15:06:21 +1000211 $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
Ben Lindstrombc709922001-04-18 18:04:21 +0000212 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
213 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
Damien Miller78315eb2000-09-29 23:01:36 +1100214 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
215 $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
Damien Miller729e1f12000-08-07 15:39:13 +1000216 $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
217 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
218 $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
219 $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
Ben Lindstromb94f8b22001-03-24 00:20:56 +0000220 $(INSTALL) -m 0755 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
Damien Miller729e1f12000-08-07 15:39:13 +1000221 $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
Damien Miller6c21c512002-01-22 21:57:53 +1100222 if test ! -z "$(INSTALL_SSH_RAND_HELPER)" ; then \
223 $(INSTALL) -m 0755 -s ssh-rand-helper $(DESTDIR)$(libexecdir)/ssh-rand-helper ; \
224 fi
Ben Lindstromdb41d232002-06-07 03:11:38 +0000225 $(INSTALL) -m 4711 -s ssh-keysign $(DESTDIR)$(SSH_KEYSIGN)
Damien Miller6d986562001-02-05 00:54:23 +1100226 @NO_SFTP@$(INSTALL) -m 0755 -s sftp $(DESTDIR)$(bindir)/sftp
Damien Millerd7686fd2001-02-10 00:40:03 +1100227 @NO_SFTP@$(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(SFTP_SERVER)
Ben Lindstrombc709922001-04-18 18:04:21 +0000228 $(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
229 $(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
230 $(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
231 $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
232 $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
233 $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
234 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
Damien Miller32e48182002-04-14 19:27:12 +1000235 if [ ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
Damien Miller8be24f32002-04-15 13:23:59 +1000236 $(INSTALL) -m 644 ssh-rand-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8 ; \
Damien Miller32e48182002-04-14 19:27:12 +1000237 fi
Ben Lindstrombc709922001-04-18 18:04:21 +0000238 @NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
239 @NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
Ben Lindstromdb41d232002-06-07 03:11:38 +0000240 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
Damien Miller7d7c60d2000-01-26 14:37:48 +1100241 -rm -f $(DESTDIR)$(bindir)/slogin
Damien Millerbac2d8a2000-09-05 16:13:06 +1100242 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
Damien Miller7d7c60d2000-01-26 14:37:48 +1100243 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
244 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
Damien Miller0986b552000-11-11 08:36:38 +1100245 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
Damien Miller78315eb2000-09-29 23:01:36 +1100246 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
Damien Miller0986b552000-11-11 08:36:38 +1100247 fi
248 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
Damien Miller7d7c60d2000-01-26 14:37:48 +1100249 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100250 else \
251 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
Damien Miller0986b552000-11-11 08:36:38 +1100252 fi
253 if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
Damien Miller7d7c60d2000-01-26 14:37:48 +1100254 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100255 else \
256 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
Damien Miller296a5461999-11-13 10:48:51 +1100257 fi
Damien Miller0437b332000-05-02 09:56:41 +1000258 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
Damien Miller78315eb2000-09-29 23:01:36 +1100259 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
Damien Millere4041c92000-10-14 17:45:58 +1100260 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
261 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100262 else \
263 echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
Damien Millere4041c92000-10-14 17:45:58 +1100264 fi ; \
Damien Miller0437b332000-05-02 09:56:41 +1000265 fi
Damien Millerb5b0af42001-06-27 21:52:32 +1000266 if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
267 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
268 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
269 mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
Damien Milleracf59e62001-06-28 20:23:14 +1000270 else \
Damien Millerb5b0af42001-06-27 21:52:32 +1000271 $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
272 fi ; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100273 else \
Damien Millerb5b0af42001-06-27 21:52:32 +1000274 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
Damien Miller0986b552000-11-11 08:36:38 +1100275 fi
Damien Miller296a5461999-11-13 10:48:51 +1100276
Damien Millerbac2d8a2000-09-05 16:13:06 +1100277host-key: ssh-keygen$(EXEEXT)
Damien Miller54ba4692000-07-11 18:39:20 +1000278 if [ -z "$(DESTDIR)" ] ; then \
279 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
280 echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
281 else \
Ben Lindstrom65571522000-11-16 02:46:20 +0000282 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
Damien Miller54ba4692000-07-11 18:39:20 +1000283 fi ; \
284 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
285 echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
286 else \
Ben Lindstrom65571522000-11-16 02:46:20 +0000287 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
Damien Miller0bc1bd82000-11-13 22:57:25 +1100288 fi ; \
289 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
290 echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
291 else \
Ben Lindstrom65571522000-11-16 02:46:20 +0000292 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
Damien Miller54ba4692000-07-11 18:39:20 +1000293 fi ; \
Damien Miller099f5052000-06-22 20:57:11 +1000294 fi ;
295
Damien Millerbac2d8a2000-09-05 16:13:06 +1100296host-key-force: ssh-keygen$(EXEEXT)
Ben Lindstrom65571522000-11-16 02:46:20 +0000297 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
298 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
299 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
Damien Miller4095f892000-03-03 22:13:52 +1100300
Damien Millerbf1c9b21999-12-09 10:16:54 +1100301uninstallall: uninstall
Damien Miller7d7c60d2000-01-26 14:37:48 +1100302 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
303 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
Damien Miller0437b332000-05-02 09:56:41 +1000304 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
Damien Miller7d7c60d2000-01-26 14:37:48 +1100305 -rmdir $(DESTDIR)$(sysconfdir)
306 -rmdir $(DESTDIR)$(bindir)
307 -rmdir $(DESTDIR)$(sbindir)
308 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
309 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
310 -rmdir $(DESTDIR)$(mandir)
311 -rmdir $(DESTDIR)$(libexecdir)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100312
313uninstall:
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000314 -rm -f $(DESTDIR)$(bindir)/slogin
Damien Millerbac2d8a2000-09-05 16:13:06 +1100315 -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
316 -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
317 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
318 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
319 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000320 -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
Damien Miller33804262001-02-04 23:20:18 +1100321 -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100322 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
Damien Millerd7686fd2001-02-10 00:40:03 +1100323 -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
Ben Lindstromdb41d232002-06-07 03:11:38 +0000324 -rm -f $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT)
325 -rm -f $(DESTDIR)$(RAND_HELPER)$(EXEEXT)
Damien Miller7d7c60d2000-01-26 14:37:48 +1100326 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
327 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
328 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
329 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
330 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
Damien Miller33804262001-02-04 23:20:18 +1100331 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000332 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
Damien Miller7d7c60d2000-01-26 14:37:48 +1100333 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
Damien Miller32e48182002-04-14 19:27:12 +1000334 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000335 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
Ben Lindstromdb41d232002-06-07 03:11:38 +0000336 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
Damien Miller7d7c60d2000-01-26 14:37:48 +1100337 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1