diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
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@ | |||
29 | PERL=@PERL@ | 29 | PERL=@PERL@ |
30 | LDFLAGS=-L. @LDFLAGS@ | 30 | LDFLAGS=-L. @LDFLAGS@ |
31 | 31 | ||
32 | INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@ | ||
33 | |||
32 | TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS) | 34 | TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS) |
33 | 35 | ||
34 | LIBOBJS= 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 | 36 | LIBOBJS= 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 | ||
81 | clean: | 83 | clean: |
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 | ||
85 | distclean: clean | 87 | distclean: 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 | ||
129 | host-key: ssh-keygen | 134 | host-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 | |||
132 | uninstallall: uninstall | 137 | uninstallall: 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) |