summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-03-15 12:13:01 +1100
committerDamien Miller <djm@mindrot.org>2000-03-15 12:13:01 +1100
commit8b1c22b7758511461b359461926e47b093a349d3 (patch)
tree482ba5094683dac130413f7c2d4971e9b2a31761 /Makefile.in
parentf09b07a971f64cf69f2c45a364c3d56559f7c1c3 (diff)
- Created contrib/ subdirectory. Included helpers from Phil Hands'
Debian package, README file and chroot patch from Ricardo Cerqueira <rmcc@clix.pt> - Moved gnome-ssh-askpass.c to contrib directory and reomved config option. - Slight cleanup to doc files
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile.in b/Makefile.in
index b406d5f7a..a55af98db 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -21,7 +21,6 @@ ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
21CC=@CC@ 21CC=@CC@
22PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" 22PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
23CFLAGS=@CFLAGS@ $(PATHS) @DEFS@ 23CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
24EXTRA_TARGETS=@GNOME_ASKPASS@
25LIBS=@LIBS@ 24LIBS=@LIBS@
26AR=@AR@ 25AR=@AR@
27RANLIB=@RANLIB@ 26RANLIB=@RANLIB@
@@ -29,9 +28,6 @@ INSTALL=@INSTALL@
29PERL=@PERL@ 28PERL=@PERL@
30LDFLAGS=-L. @LDFLAGS@ 29LDFLAGS=-L. @LDFLAGS@
31 30
32GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
33GNOME_LIBS=`gnome-config --libs gnome gnomeui`
34
35TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS) 31TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
36 32
37LIBOBJS= atomicio.o authfd.o authfile.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.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 fake-getaddrinfo.o fake-getnameinfo.o fingerprint.o hostfile.o log.o match.o mpaux.o nchan.o packet.o radix.o random.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o 33LIBOBJS= atomicio.o authfd.o authfile.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.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 fake-getaddrinfo.o fake-getnameinfo.o fingerprint.o hostfile.o log.o match.o mpaux.o nchan.o packet.o radix.o random.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o
@@ -76,9 +72,6 @@ ssh-agent: libssh.a ssh-agent.o log-client.o
76ssh-keygen: libssh.a ssh-keygen.o log-client.o 72ssh-keygen: libssh.a ssh-keygen.o log-client.o
77 $(CC) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS) 73 $(CC) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS)
78 74
79gnome-ssh-askpass: gnome-ssh-askpass.c
80 $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
81
82$(MANPAGES) $(CONFIGFILES):: 75$(MANPAGES) $(CONFIGFILES)::
83 $(FIXPATHSCMD) $(srcdir)/$@ 76 $(FIXPATHSCMD) $(srcdir)/$@
84 77
@@ -124,12 +117,6 @@ install: $(TARGETS)
124 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 117 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
125 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 118 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
126 119
127 if [ ! -z "@GNOME_ASKPASS@" ] ; then \
128 $(INSTALL) -d $(DESTDIR)$(libexecdir) ; \
129 $(INSTALL) -d $(DESTDIR)$(libexecdir)/ssh ; \
130 $(INSTALL) -s @GNOME_ASKPASS@ $(DESTDIR)${ASKPASS_LOCATION} ; \
131 fi
132
133 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \ 120 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
134 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \ 121 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \
135 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \ 122 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \