diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-30 09:47:52 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-30 09:47:52 +1100 |
commit | 1f7833deba0c9b4fa7872d7b01e31e4cbd540ad4 (patch) | |
tree | dce22886b1e855f061c808d418385d65214c2612 /Makefile.in | |
parent | 42b81ffe7d1e98b362696076edbc56a66368053e (diff) |
Fix symlinks on Solaris
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index abf81fa5c..55b851063 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -34,14 +34,14 @@ OBJS= authfd.o authfile.o auth-passwd.o auth-rhosts.o auth-rh-rsa.o \ | |||
34 | 34 | ||
35 | all: $(OBJS) $(TARGETS) | 35 | all: $(OBJS) $(TARGETS) |
36 | 36 | ||
37 | libssh.a: authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o hostfile.o match.o mpaux.o nchan.o packet.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o helper.o rc4.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o bsd-snprintf.o log.o fingerprint.o | 37 | libssh.a: authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o hostfile.o match.o mpaux.o nchan.o packet.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o helper.o rc4.o bsd-mktemp.o bsd-strlcpy.o bsd-strlcat.o bsd-snprintf.o bsd-daemon.o log.o fingerprint.o |
38 | $(AR) rv $@ $^ | 38 | $(AR) rv $@ $^ |
39 | $(RANLIB) $@ | 39 | $(RANLIB) $@ |
40 | 40 | ||
41 | ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a | 41 | ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a |
42 | $(CC) -o $@ $^ $(LFLAGS) $(LIBS) | 42 | $(CC) -o $@ $^ $(LFLAGS) $(LIBS) |
43 | 43 | ||
44 | sshd: sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o bsd-daemon.o md5crypt.o libssh.a | 44 | sshd: sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o md5crypt.o libssh.a |
45 | $(CC) -o $@ $^ $(LFLAGS) $(LIBS) | 45 | $(CC) -o $@ $^ $(LFLAGS) $(LIBS) |
46 | 46 | ||
47 | scp: scp.o libssh.a | 47 | scp: scp.o libssh.a |
@@ -80,8 +80,10 @@ install: all | |||
80 | $(INSTALL) -m644 ssh-agent.1 $(mandir)/man1/ssh-agent.1 | 80 | $(INSTALL) -m644 ssh-agent.1 $(mandir)/man1/ssh-agent.1 |
81 | $(INSTALL) -m644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1 | 81 | $(INSTALL) -m644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1 |
82 | $(INSTALL) -m644 sshd.8 $(mandir)/man8/sshd.8 | 82 | $(INSTALL) -m644 sshd.8 $(mandir)/man8/sshd.8 |
83 | ln -sf ssh $(bindir)/slogin | 83 | -rm -f $(bindir)/slogin |
84 | ln -sf ssh.1 $(mandir)/man1/slogin.1 | 84 | ln -s ssh $(bindir)/slogin |
85 | -rm -f $(mandir)/man1/slogin.1 | ||
86 | ln -s ssh.1 $(mandir)/man1/slogin.1 | ||
85 | 87 | ||
86 | $(INSTALL) -d $(libexecdir) ; | 88 | $(INSTALL) -d $(libexecdir) ; |
87 | $(INSTALL) -d $(libexecdir)/ssh ; | 89 | $(INSTALL) -d $(libexecdir)/ssh ; |