blob: b7ea044866d2b7863ce48cd4b8c557251c12b35d [file] [log] [blame]
Damien Miller8f6bc302001-07-14 13:07:43 +10001# $Id: Makefile.in,v 1.182 2001/07/14 03:07:43 djm Exp $
Damien Millerb797b922001-02-04 23:27:00 +11002
Damien Miller7f6ea021999-10-28 13:25:17 +10003prefix=@prefix@
4exec_prefix=@exec_prefix@
5bindir=@bindir@
6sbindir=@sbindir@
Damien Millere2324551999-11-19 17:18:57 +11007libexecdir=@libexecdir@
Damien Miller94388161999-10-29 09:57:31 +10008mandir=@mandir@
Ben Lindstrombc709922001-04-18 18:04:21 +00009mansubdir=@mansubdir@
Damien Miller296a5461999-11-13 10:48:51 +110010sysconfdir=@sysconfdir@
Damien Millerb13c73e2000-01-17 22:02:17 +110011piddir=@piddir@
12srcdir=@srcdir@
13top_srcdir=@top_srcdir@
Damien Miller7f6ea021999-10-28 13:25:17 +100014
Damien Miller7d7c60d2000-01-26 14:37:48 +110015DESTDIR=
Damien Millerc0d73901999-12-27 09:23:58 +110016VPATH=@srcdir@
Damien Millerc7b38ce1999-11-09 10:28:04 +110017SSH_PROGRAM=@bindir@/ssh
Damien Miller606f8802000-09-16 15:39:56 +110018ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
Damien Millerd7686fd2001-02-10 00:40:03 +110019SFTP_SERVER=$(libexecdir)/sftp-server
20
21PATHS= -DETCDIR=\"$(sysconfdir)\" \
22 -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
23 -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
Ben Lindstrombc709922001-04-18 18:04:21 +000024 -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
25 -D_PATH_SSH_PIDDIR=\"$(piddir)\"
Damien Millerc7b38ce1999-11-09 10:28:04 +110026
Damien Miller7f6ea021999-10-28 13:25:17 +100027CC=@CC@
Damien Miller166bd442000-03-16 10:48:25 +110028LD=@LD@
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000029CFLAGS=@CFLAGS@
Damien Miller3c027682001-03-14 11:39:45 +110030CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
Damien Millerd3dcfaf1999-11-09 13:52:33 +110031LIBS=@LIBS@
Damien Miller7f6ea021999-10-28 13:25:17 +100032AR=@AR@
33RANLIB=@RANLIB@
Damien Millerd8087f61999-11-25 12:31:26 +110034INSTALL=@INSTALL@
Damien Millere79334a1999-12-29 10:03:37 +110035PERL=@PERL@
Damien Miller8d1fd572000-05-17 21:34:07 +100036ENT=@ENT@
Damien Millera19cf472000-11-29 13:28:50 +110037XAUTH_PATH=@XAUTH_PATH@
Ben Lindstrom3c06f6a2001-01-31 21:52:01 +000038LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
Damien Millerbac2d8a2000-09-05 16:13:06 +110039EXEEXT=@EXEEXT@
Damien Miller78315eb2000-09-29 23:01:36 +110040SSH_MODE= @SSHMODE@
Damien Miller7f6ea021999-10-28 13:25:17 +100041
Damien Miller0437b332000-05-02 09:56:41 +100042INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
43
Damien Miller33804262001-02-04 23:20:18 +110044@NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
Ben Lindstrom3ad650a2001-01-03 06:02:51 +000045
Damien Miller33804262001-02-04 23:20:18 +110046TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS)
Damien Miller7f6ea021999-10-28 13:25:17 +100047
Ben Lindstromf70b59c2001-07-04 05:40:19 +000048LIBSSH_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
Damien Miller18ccf851999-12-16 13:06:18 +110049
Ben Lindstrome626cf82001-04-14 23:21:50 +000050SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
Damien Millere72b7af1999-12-30 15:08:44 +110051
Ben Lindstromd1aed9c2001-06-10 00:41:18 +000052SSHDOBJS= 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
Damien Millere72b7af1999-12-30 15:08:44 +110053
Ben Lindstrom38862182001-04-27 00:31:07 +000054MANPAGES = 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
55MANPAGES_IN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
Damien Miller897741e2001-04-16 10:41:46 +100056MANTYPE = @MANTYPE@
Damien Miller645c5982000-01-03 14:42:09 +110057
Damien Millerb5b0af42001-06-27 21:52:32 +100058CONFIGFILES=sshd_config.out ssh_config.out moduli.out
59CONFIGFILES_IN=sshd_config ssh_config moduli
Damien Miller645c5982000-01-03 14:42:09 +110060
Damien Millera19cf472000-11-29 13:28:50 +110061PATHSUBS = \
62 -D/etc/ssh_config=$(sysconfdir)/ssh_config \
63 -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
64 -D/etc/sshd_config=$(sysconfdir)/sshd_config \
65 -D/usr/libexec=$(libexecdir) \
66 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
67 -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key \
68 -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
69 -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
70 -D/var/run/sshd.pid=$(piddir)/sshd.pid \
Damien Millerb5b0af42001-06-27 21:52:32 +100071 -D/etc/moduli=$(sysconfdir)/moduli \
Damien Millera19cf472000-11-29 13:28:50 +110072 -D/etc/sshrc=$(sysconfdir)/sshrc \
Tim Rice59ea0a02001-03-10 13:50:45 -080073 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \
74 -D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@
Damien Miller886c63a2000-01-20 23:13:36 +110075
76FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
77
Damien Miller897741e2001-04-16 10:41:46 +100078all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
Damien Miller18ccf851999-12-16 13:06:18 +110079
Damien Miller16e519c2000-05-09 14:28:55 +100080$(LIBSSH_OBJS): config.h
Ben Lindstrom3deda8b2000-12-22 20:27:43 +000081$(SSHOBJS): config.h
82$(SSHDOBJS): config.h
Damien Miller16e519c2000-05-09 14:28:55 +100083
Ben Lindstromf5410352000-12-29 21:37:22 +000084.c.o:
Ben Lindstrom59f68792000-12-30 03:50:04 +000085 $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
Ben Lindstromf5410352000-12-29 21:37:22 +000086
Ben Lindstrome03c85d2001-02-01 14:06:11 +000087LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
Ben Lindstrom684ba4c2001-02-03 21:53:47 +000088$(LIBCOMPAT): config.h
Ben Lindstrome6b3b7b2001-02-03 00:33:04 +000089 (cd openbsd-compat; $(MAKE))
Damien Miller7f6ea021999-10-28 13:25:17 +100090
Damien Miller16e519c2000-05-09 14:28:55 +100091libssh.a: $(LIBSSH_OBJS)
92 $(AR) rv $@ $(LIBSSH_OBJS)
93 $(RANLIB) $@
Damien Miller7f6ea021999-10-28 13:25:17 +100094
Ben Lindstrome03c85d2001-02-01 14:06:11 +000095ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
Damien Miller16e519c2000-05-09 14:28:55 +100096 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100097
Ben Lindstrome03c85d2001-02-01 14:06:11 +000098sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
Damien Miller16e519c2000-05-09 14:28:55 +100099 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000100
Ben Lindstrom4529b702001-05-03 23:39:53 +0000101scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o
102 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000103
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000104ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
105 $(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000106
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000107ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o
108 $(LD) -o $@ ssh-agent.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller16e519c2000-05-09 14:28:55 +1000109
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000110ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
111 $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +1000112
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000113ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
114 $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000115
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000116sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o
117 $(LD) -o $@ sftp-server.o sftp-common.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller33804262001-02-04 23:20:18 +1100118
Ben Lindstrom4529b702001-05-03 23:39:53 +0000119sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-int.o sftp-common.o sftp-glob.o
120 $(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 +1100121
andre2ff7b5d2000-06-03 14:57:40 +0000122# test driver for the loginrec code - not built by default
Kevin Stevesbe48f2b2001-04-06 01:58:37 +0000123logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
124 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS)
andre2ff7b5d2000-06-03 14:57:40 +0000125
Ben Lindstrom38862182001-04-27 00:31:07 +0000126$(MANPAGES): $(MANPAGES_IN)
Damien Miller897741e2001-04-16 10:41:46 +1000127 if test "$(MANTYPE)" = "cat"; then \
Ben Lindstrom38862182001-04-27 00:31:07 +0000128 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \
Damien Miller897741e2001-04-16 10:41:46 +1000129 else \
Ben Lindstrom38862182001-04-27 00:31:07 +0000130 manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \
Damien Miller897741e2001-04-16 10:41:46 +1000131 fi; \
132 if test "$(MANTYPE)" = "man"; then \
Ben Lindstrom38862182001-04-27 00:31:07 +0000133 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@; \
Damien Miller897741e2001-04-16 10:41:46 +1000134 else \
Ben Lindstrom38862182001-04-27 00:31:07 +0000135 $(FIXPATHSCMD) $${manpage} > $@; \
Damien Miller897741e2001-04-16 10:41:46 +1000136 fi
137
Ben Lindstrom38862182001-04-27 00:31:07 +0000138$(CONFIGFILES): $(CONFIGFILES_IN)
139 conffile=`echo $@ | sed 's/.out$$//'`; \
140 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
Damien Miller645c5982000-01-03 14:42:09 +1100141
Damien Miller34132e52000-01-14 15:45:46 +1100142clean:
andre2ff7b5d2000-06-03 14:57:40 +0000143 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
Damien Miller615f9392000-05-17 22:53:33 +1000144 rm -f *.out core
Damien Miller8f6bc302001-07-14 13:07:43 +1000145 (cd openbsd-compat; $(MAKE) clean)
Damien Miller34132e52000-01-14 15:45:46 +1100146
Damien Miller8f6bc302001-07-14 13:07:43 +1000147distclean:
148 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
149 rm -f *.out core
Damien Miller615f9392000-05-17 22:53:33 +1000150 rm -f Makefile config.h config.status ssh_prng_cmds *~
Damien Miller8f6bc302001-07-14 13:07:43 +1000151 (cd openbsd-compat; $(MAKE) distclean)
152
153veryclean:
154 rm -f configure config.h.in *.0
155 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
156 rm -f *.out core
157 rm -f Makefile config.h config.status ssh_prng_cmds *~
158 (cd openbsd-compat; $(MAKE) distclean)
Damien Miller34132e52000-01-14 15:45:46 +1100159
160mrproper: distclean
161
Ben Lindstrome2e66a22001-04-18 15:46:01 +0000162catman-do:
Ben Lindstrom38862182001-04-27 00:31:07 +0000163 @for f in $(MANPAGES_IN) ; do \
Ben Lindstrome2e66a22001-04-18 15:46:01 +0000164 base=`echo $$f | sed 's/\..*$$//'` ; \
165 echo "$$f -> $$base.0" ; \
166 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
167 >$$base.0 ; \
168 done
Damien Miller34132e52000-01-14 15:45:46 +1100169
Ben Lindstrome2e66a22001-04-18 15:46:01 +0000170distprep: catman-do
Damien Miller262ff172000-06-28 08:24:49 +1000171 autoreconf
172
Ben Lindstrom0b355722001-06-10 17:43:35 +0000173install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
Damien Miller099f5052000-06-22 20:57:11 +1000174
175install-files:
Damien Miller78315eb2000-09-29 23:01:36 +1100176 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
177 $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
178 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
Ben Lindstrombc709922001-04-18 18:04:21 +0000179 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
180 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
Damien Miller78315eb2000-09-29 23:01:36 +1100181 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
182 $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
Damien Miller729e1f12000-08-07 15:39:13 +1000183 $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
184 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
185 $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
186 $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
Ben Lindstromb94f8b22001-03-24 00:20:56 +0000187 $(INSTALL) -m 0755 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
Damien Miller729e1f12000-08-07 15:39:13 +1000188 $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
Damien Miller6d986562001-02-05 00:54:23 +1100189 @NO_SFTP@$(INSTALL) -m 0755 -s sftp $(DESTDIR)$(bindir)/sftp
Damien Millerd7686fd2001-02-10 00:40:03 +1100190 @NO_SFTP@$(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(SFTP_SERVER)
Ben Lindstrombc709922001-04-18 18:04:21 +0000191 $(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
192 $(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
193 $(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
194 $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
195 $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
196 $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
197 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
198 @NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
199 @NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
Damien Miller7d7c60d2000-01-26 14:37:48 +1100200 -rm -f $(DESTDIR)$(bindir)/slogin
Damien Millerbac2d8a2000-09-05 16:13:06 +1100201 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
Damien Miller7d7c60d2000-01-26 14:37:48 +1100202 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
203 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
Damien Miller78315eb2000-09-29 23:01:36 +1100204 @FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin
Damien Miller0986b552000-11-11 08:36:38 +1100205 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
Damien Miller78315eb2000-09-29 23:01:36 +1100206 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
Damien Miller0986b552000-11-11 08:36:38 +1100207 fi
208 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
Damien Miller7d7c60d2000-01-26 14:37:48 +1100209 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100210 else \
211 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
Damien Miller0986b552000-11-11 08:36:38 +1100212 fi
213 if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
Damien Miller7d7c60d2000-01-26 14:37:48 +1100214 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100215 else \
216 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
Damien Miller296a5461999-11-13 10:48:51 +1100217 fi
Damien Miller0437b332000-05-02 09:56:41 +1000218 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
Damien Miller78315eb2000-09-29 23:01:36 +1100219 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
Damien Millere4041c92000-10-14 17:45:58 +1100220 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
221 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100222 else \
223 echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
Damien Millere4041c92000-10-14 17:45:58 +1100224 fi ; \
Damien Miller0437b332000-05-02 09:56:41 +1000225 fi
Damien Millerb5b0af42001-06-27 21:52:32 +1000226 if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
227 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
228 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
229 mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
Damien Milleracf59e62001-06-28 20:23:14 +1000230 else \
Damien Millerb5b0af42001-06-27 21:52:32 +1000231 $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
232 fi ; \
Damien Miller29abb1b2000-11-11 08:51:40 +1100233 else \
Damien Millerb5b0af42001-06-27 21:52:32 +1000234 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
Damien Miller0986b552000-11-11 08:36:38 +1100235 fi
Damien Miller296a5461999-11-13 10:48:51 +1100236
Damien Millerbac2d8a2000-09-05 16:13:06 +1100237host-key: ssh-keygen$(EXEEXT)
Damien Miller54ba4692000-07-11 18:39:20 +1000238 if [ -z "$(DESTDIR)" ] ; then \
239 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
240 echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
241 else \
Ben Lindstrom65571522000-11-16 02:46:20 +0000242 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
Damien Miller54ba4692000-07-11 18:39:20 +1000243 fi ; \
244 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
245 echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
246 else \
Ben Lindstrom65571522000-11-16 02:46:20 +0000247 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
Damien Miller0bc1bd82000-11-13 22:57:25 +1100248 fi ; \
249 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
250 echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
251 else \
Ben Lindstrom65571522000-11-16 02:46:20 +0000252 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
Damien Miller54ba4692000-07-11 18:39:20 +1000253 fi ; \
Damien Miller099f5052000-06-22 20:57:11 +1000254 fi ;
255
Damien Millerbac2d8a2000-09-05 16:13:06 +1100256host-key-force: ssh-keygen$(EXEEXT)
Ben Lindstrom65571522000-11-16 02:46:20 +0000257 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
258 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
259 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
Damien Miller4095f892000-03-03 22:13:52 +1100260
Damien Millerbf1c9b21999-12-09 10:16:54 +1100261uninstallall: uninstall
Damien Miller7d7c60d2000-01-26 14:37:48 +1100262 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
263 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
Damien Miller0437b332000-05-02 09:56:41 +1000264 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
Damien Miller7d7c60d2000-01-26 14:37:48 +1100265 -rmdir $(DESTDIR)$(sysconfdir)
266 -rmdir $(DESTDIR)$(bindir)
267 -rmdir $(DESTDIR)$(sbindir)
268 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
269 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
270 -rmdir $(DESTDIR)$(mandir)
271 -rmdir $(DESTDIR)$(libexecdir)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100272
273uninstall:
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000274 -rm -f $(DESTDIR)$(bindir)/slogin
Damien Millerbac2d8a2000-09-05 16:13:06 +1100275 -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
276 -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
277 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
278 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
279 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000280 -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
Damien Miller33804262001-02-04 23:20:18 +1100281 -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
Damien Millerbac2d8a2000-09-05 16:13:06 +1100282 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
Damien Millerd7686fd2001-02-10 00:40:03 +1100283 -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
Damien Miller7d7c60d2000-01-26 14:37:48 +1100284 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
285 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
286 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
287 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
288 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
Damien Miller33804262001-02-04 23:20:18 +1100289 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000290 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
Damien Miller7d7c60d2000-01-26 14:37:48 +1100291 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
Ben Lindstrom3ad650a2001-01-03 06:02:51 +0000292 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
Damien Miller7d7c60d2000-01-26 14:37:48 +1100293 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1