summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-02 09:56:41 +1000
committerDamien Miller <djm@mindrot.org>2000-05-02 09:56:41 +1000
commit0437b33e54fd72060d17908d6abf96bfabaacad2 (patch)
treef4fe0e394d30b915b5647c8c6d48c86b43337c96 /Makefile.in
parent6f83b8e34d3dc8227d7cf39989c5966abde2305e (diff)
- Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropy
gathering commands from a text file
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index d5e3fde6c..646201c04 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -29,6 +29,8 @@ INSTALL=@INSTALL@
29PERL=@PERL@ 29PERL=@PERL@
30LDFLAGS=-L. @LDFLAGS@ 30LDFLAGS=-L. @LDFLAGS@
31 31
32INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
33
32TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS) 34TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
33 35
34LIBOBJS= atomicio.o authfd.o authfile.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.o bsd-setenv.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dispatch.o dsa.o fake-getaddrinfo.o fake-getnameinfo.o fingerprint.o hmac.o hostfile.o key.o kex.o log.o match.o mpaux.o nchan.o packet.o radix.o entropy.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o 36LIBOBJS= atomicio.o authfd.o authfile.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.o bsd-setenv.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dispatch.o dsa.o fake-getaddrinfo.o fake-getnameinfo.o fingerprint.o hmac.o hostfile.o key.o kex.o log.o match.o mpaux.o nchan.o packet.o radix.o entropy.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o
@@ -80,7 +82,7 @@ $(MANPAGES) $(CONFIGFILES)::
80 82
81clean: 83clean:
82 rm -f *.o *.a $(TARGETS) config.status config.cache config.log 84 rm -f *.o *.a $(TARGETS) config.status config.cache config.log
83 rm -f *.out core 85 rm -f *.out ssh_prng_cmds core
84 86
85distclean: clean 87distclean: clean
86 rm -f Makefile config.h core *~ 88 rm -f Makefile config.h core *~
@@ -125,6 +127,9 @@ install: manpages $(TARGETS)
125 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \ 127 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
126 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \ 128 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
127 fi 129 fi
130 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
131 $(INSTALL) -m 644 ssh_prng_cmds $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
132 fi
128 133
129host-key: ssh-keygen 134host-key: ssh-keygen
130 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N '' 135 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ''
@@ -132,6 +137,7 @@ host-key: ssh-keygen
132uninstallall: uninstall 137uninstallall: uninstall
133 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config 138 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
134 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config 139 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
140 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
135 -rmdir $(DESTDIR)$(sysconfdir) 141 -rmdir $(DESTDIR)$(sysconfdir)
136 -rmdir $(DESTDIR)$(bindir) 142 -rmdir $(DESTDIR)$(bindir)
137 -rmdir $(DESTDIR)$(sbindir) 143 -rmdir $(DESTDIR)$(sbindir)