summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-09 10:28:04 +1100
committerDamien Miller <djm@mindrot.org>1999-11-09 10:28:04 +1100
commitc7b38ceed6030484c61c71ea9fafaca6b34a297e (patch)
tree4ad64e48a77da1772b19ab6578ad8877ab75ba3a /Makefile.in
parente8d9068a36e2528dbaf48c192cd1f97e8beafdfe (diff)
- Autodetection of SSL/Crypto library location via autoconf
- Fixed location of ssh-askpass to follow autoconf - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk> - Autodetection of RSAref library for US users - Minor doc updates
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in15
1 files changed, 10 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 151131c6d..f182af3b3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -5,9 +5,12 @@ sbindir=@sbindir@
5libdir=@libdir@ 5libdir=@libdir@
6mandir=@mandir@ 6mandir=@mandir@
7 7
8SSH_PROGRAM=@bindir@/ssh
9ASKPASS_PROGRAM=@libdir@/ssh/ssh-askpass
10
8CC=@CC@ 11CC=@CC@
9OPT_FLAGS=-g 12PATHS=-DETCDIR=\"@sysconfdir@\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DASKPASS_PROGRAM=\"$(ASKPASS_PROGRAM)\"
10CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" -DSSH_PROGRAM=\"@bindir@/ssh\" @DEFS@ 13CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
11TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp 14TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp
12LFLAGS=-L. 15LFLAGS=-L.
13LIBS=-lssh @LIBS@ 16LIBS=-lssh @LIBS@
@@ -55,8 +58,9 @@ install:
55 install -d $(mandir) 58 install -d $(mandir)
56 install -d $(mandir)/man1 59 install -d $(mandir)/man1
57 install -d $(mandir)/man8 60 install -d $(mandir)/man8
61 install -d $(libdir)/ssh
58 install -s -c ssh $(bindir)/ssh 62 install -s -c ssh $(bindir)/ssh
59 ln -s ssh $(bindir)/slogin 63 ln -sf ssh $(bindir)/slogin
60 install -s -c scp $(bindir)/scp 64 install -s -c scp $(bindir)/scp
61 install -s -c ssh-add $(bindir)/ssh-add 65 install -s -c ssh-add $(bindir)/ssh-add
62 install -m755 -c ssh-askpass $(libdir)/ssh/ssh-askpass 66 install -m755 -c ssh-askpass $(libdir)/ssh/ssh-askpass
@@ -64,7 +68,7 @@ install:
64 install -s -c ssh-keygen $(bindir)/ssh-keygen 68 install -s -c ssh-keygen $(bindir)/ssh-keygen
65 install -s -c sshd $(sbindir)/sshd 69 install -s -c sshd $(sbindir)/sshd
66 install -m644 -c ssh.1 $(mandir)/man1/ssh.1 70 install -m644 -c ssh.1 $(mandir)/man1/ssh.1
67 ln -s ssh.1 $(mandir)/man1/slogin.1 71 ln -sf ssh.1 $(mandir)/man1/slogin.1
68 install -m644 -c scp.1 $(mandir)/man1/scp.1 72 install -m644 -c scp.1 $(mandir)/man1/scp.1
69 install -m644 -c ssh-add.1 $(mandir)/man1/ssh-add.1 73 install -m644 -c ssh-add.1 $(mandir)/man1/ssh-add.1
70 install -m644 -c ssh-agent.1 $(mandir)/man1/ssh-agent.1 74 install -m644 -c ssh-agent.1 $(mandir)/man1/ssh-agent.1
@@ -77,4 +81,5 @@ distclean: clean
77mrproper: distclean 81mrproper: distclean
78 82
79veryclean: distclean 83veryclean: distclean
80 rm -f configure 84 rm -f configure config.h.in
85