summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-12-05 01:15:09 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-12-05 01:15:09 +0000
commitb6434ae0e89c6614645a6e8ef50be1c5884beaf5 (patch)
treeddd59719a473c529c0f783bd273b1ef92fdf03db /Makefile.in
parentd121f613708c3c9c82465b0788550943a918d5c8 (diff)
20001205
- (bal) OpenSSH CVS updates: - markus@cvs.openbsd.org 2000/12/04 19:24:02 [ssh-keyscan.c ssh-keyscan.1] David Maziere's ssh-keyscan, ok niels@ - (bal) Updated Makefile.in to include ssh-keyscan that was just added to the recent OpenBSD source tree.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 1e5d4105a..b351985c1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -34,7 +34,7 @@ SSH_MODE= @SSHMODE@
34 34
35INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@ 35INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
36 36
37TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) 37TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT)
38 38
39LIBSSH_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 cygwin_util.o deattack.o dispatch.o hmac.o hostfile.o key.o kex.o log.o match.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 util.o uuencode.o xmalloc.o 39LIBSSH_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 cygwin_util.o deattack.o dispatch.o hmac.o hostfile.o key.o kex.o log.o match.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 util.o uuencode.o xmalloc.o
40 40
@@ -44,8 +44,8 @@ SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o
44 44
45SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-skey.o auth2-skey.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 dh.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o 45SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-skey.o auth2-skey.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 dh.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o
46 46
47TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8 sftp-server.8 47TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8
48CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0 sftp-server.0 48CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh-keyscan.0 ssh.0 sshd.0 sftp-server.0
49MANPAGES = @MANTYPE@ 49MANPAGES = @MANTYPE@
50 50
51CONFIGFILES=sshd_config ssh_config primes 51CONFIGFILES=sshd_config ssh_config primes
@@ -100,6 +100,9 @@ ssh-agent$(EXEEXT): libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
100ssh-keygen$(EXEEXT): libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o 100ssh-keygen$(EXEEXT): libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
101 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 101 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
102 102
103ssh-keyscan$(EXEEXT): libopenbsd-compat.a libssh.a log-client.o ssh-keyscan.o
104 $(LD) -o $@ ssh-keyscan.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
105
103sftp-server$(EXEEXT): libopenbsd-compat.a libssh.a sftp-server.o log-server.o 106sftp-server$(EXEEXT): libopenbsd-compat.a libssh.a sftp-server.o log-server.o
104 $(LD) -o $@ sftp-server.o log-server.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 107 $(LD) -o $@ sftp-server.o log-server.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
105 108
@@ -146,6 +149,7 @@ install-files:
146 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add 149 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
147 $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent 150 $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
148 $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen 151 $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
152 $(INSTALL) -m 0775 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
149 $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd 153 $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
150 $(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(libexecdir)/sftp-server 154 $(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(libexecdir)/sftp-server
151 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1 155 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
@@ -229,12 +233,14 @@ uninstall:
229 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT) 233 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
230 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT) 234 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
231 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT) 235 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
236 -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
232 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT) 237 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
233 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1 238 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
234 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1 239 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
235 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1 240 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
236 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1 241 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
237 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1 242 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
243 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
238 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8 244 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
239 -rm -f $(DESTDIR)$(bindir)/slogin 245 -rm -f $(DESTDIR)$(bindir)/slogin
240 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 246 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1