blob: b406d5f7adf3da0a5e8169605cfd2734740a32bf [file] [log] [blame]
Damien Miller7f6ea021999-10-28 13:25:17 +10001prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
Damien Millere2324551999-11-19 17:18:57 +11005libexecdir=@libexecdir@
Damien Miller94388161999-10-29 09:57:31 +10006mandir=@mandir@
Damien Miller670a4b82000-01-22 13:53:11 +11007mansubdir=@mansubdir@
Damien Miller296a5461999-11-13 10:48:51 +11008sysconfdir=@sysconfdir@
Damien Millerb13c73e2000-01-17 22:02:17 +11009piddir=@piddir@
10srcdir=@srcdir@
11top_srcdir=@top_srcdir@
Damien Miller7f6ea021999-10-28 13:25:17 +100012
Damien Miller7d7c60d2000-01-26 14:37:48 +110013DESTDIR=
14
Damien Millerc0d73901999-12-27 09:23:58 +110015VPATH=@srcdir@
16
Damien Millerc7b38ce1999-11-09 10:28:04 +110017SSH_PROGRAM=@bindir@/ssh
Damien Miller36884401999-12-26 12:26:21 +110018ASKPASS_LOCATION=@libexecdir@/ssh
19ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
Damien Millerc7b38ce1999-11-09 10:28:04 +110020
Damien Miller7f6ea021999-10-28 13:25:17 +100021CC=@CC@
Damien Miller3bc14dd1999-12-07 14:54:53 +110022PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
Damien Millerc7b38ce1999-11-09 10:28:04 +110023CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
Damien Millere0d444c1999-11-09 14:23:45 +110024EXTRA_TARGETS=@GNOME_ASKPASS@
Damien Millerd3dcfaf1999-11-09 13:52:33 +110025LIBS=@LIBS@
Damien Miller7f6ea021999-10-28 13:25:17 +100026AR=@AR@
27RANLIB=@RANLIB@
Damien Millerd8087f61999-11-25 12:31:26 +110028INSTALL=@INSTALL@
Damien Millere79334a1999-12-29 10:03:37 +110029PERL=@PERL@
Damien Miller18ccf851999-12-16 13:06:18 +110030LDFLAGS=-L. @LDFLAGS@
Damien Miller7f6ea021999-10-28 13:25:17 +100031
Damien Millerd3dcfaf1999-11-09 13:52:33 +110032GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
33GNOME_LIBS=`gnome-config --libs gnome gnomeui`
34
Damien Miller34132e52000-01-14 15:45:46 +110035TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
Damien Miller7f6ea021999-10-28 13:25:17 +100036
Damien Millerf07390e2000-01-29 20:40:22 +110037LIBOBJS= 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
Damien Miller18ccf851999-12-16 13:06:18 +110038
Damien Millere72b7af1999-12-30 15:08:44 +110039SSHOBJS= ssh.o sshconnect.o log-client.o readconf.o clientloop.o
40
Damien Miller34132e52000-01-14 15:45:46 +110041SSHDOBJS= sshd.o auth-rhosts.o auth-krb4.o auth-pam.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
Damien Millere72b7af1999-12-30 15:08:44 +110042
Damien Miller670a4b82000-01-22 13:53:11 +110043TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
44CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
45MANPAGES = @MANTYPE@
Damien Miller645c5982000-01-03 14:42:09 +110046
47CONFIGFILES=sshd_config ssh_config
48
Damien Miller6d844932000-01-26 12:17:50 +110049PATHSUBS = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/known_hosts=$(sysconfdir)/ssh_known_hosts -D/etc/sshd_config=$(sysconfdir)/sshd_config -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key -D/var/run/sshd.pid=$(piddir)/sshd.pid
Damien Miller886c63a2000-01-20 23:13:36 +110050
51FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
52
Damien Miller34132e52000-01-14 15:45:46 +110053all: $(TARGETS) $(MANPAGES) $(CONFIGFILES)
Damien Miller18ccf851999-12-16 13:06:18 +110054
Damien Miller32b3cf21999-12-26 10:21:48 +110055$(LIBOBJS): config.h
56
Damien Miller18ccf851999-12-16 13:06:18 +110057libssh.a: $(LIBOBJS)
58 $(AR) rv $@ $(LIBOBJS)
Damien Miller7f6ea021999-10-28 13:25:17 +100059 $(RANLIB) $@
60
Damien Miller34132e52000-01-14 15:45:46 +110061ssh: libssh.a $(SSHOBJS)
Damien Millere72b7af1999-12-30 15:08:44 +110062 $(CC) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100063
Damien Miller34132e52000-01-14 15:45:46 +110064sshd: libssh.a $(SSHDOBJS)
Damien Miller105b7f02000-01-07 08:45:55 +110065 $(CC) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100066
Damien Miller34132e52000-01-14 15:45:46 +110067scp: libssh.a scp.o
Damien Miller18ccf851999-12-16 13:06:18 +110068 $(CC) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100069
Damien Miller34132e52000-01-14 15:45:46 +110070ssh-add: libssh.a ssh-add.o log-client.o
Damien Miller18ccf851999-12-16 13:06:18 +110071 $(CC) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100072
Damien Miller34132e52000-01-14 15:45:46 +110073ssh-agent: libssh.a ssh-agent.o log-client.o
Damien Miller18ccf851999-12-16 13:06:18 +110074 $(CC) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100075
Damien Miller34132e52000-01-14 15:45:46 +110076ssh-keygen: libssh.a ssh-keygen.o log-client.o
Damien Miller18ccf851999-12-16 13:06:18 +110077 $(CC) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100078
Damien Millerd3dcfaf1999-11-09 13:52:33 +110079gnome-ssh-askpass: gnome-ssh-askpass.c
80 $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
81
Damien Miller886c63a2000-01-20 23:13:36 +110082$(MANPAGES) $(CONFIGFILES)::
83 $(FIXPATHSCMD) $(srcdir)/$@
Damien Miller645c5982000-01-03 14:42:09 +110084
Damien Miller34132e52000-01-14 15:45:46 +110085clean:
86 rm -f *.o *.a $(TARGETS) config.status config.cache config.log
Damien Miller886c63a2000-01-20 23:13:36 +110087 rm -f *.out core
Damien Miller34132e52000-01-14 15:45:46 +110088
89distclean: clean
90 rm -f Makefile config.h core *~
91
92mrproper: distclean
93
94veryclean: distclean
Damien Miller670a4b82000-01-22 13:53:11 +110095 rm -f configure config.h.in *.0
96
97catman-do:
98 @for f in $(TROFFMAN) ; do \
99 echo "$$f -> $${f%%.[18]}.0" ; \
100 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
101 >$${f%%.[18]}.0 ; \
102 done
Damien Miller34132e52000-01-14 15:45:46 +1100103
Damien Miller645c5982000-01-03 14:42:09 +1100104install: $(TARGETS)
Damien Miller7d7c60d2000-01-26 14:37:48 +1100105 $(INSTALL) -d $(DESTDIR)$(bindir)
106 $(INSTALL) -d $(DESTDIR)$(sbindir)
107 $(INSTALL) -d $(DESTDIR)$(mandir)
108 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)1
109 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)8
Damien Miller3aa0fa42000-01-27 14:15:48 +1100110 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
Damien Miller7d7c60d2000-01-26 14:37:48 +1100111 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
112 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
113 $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
114 $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
115 $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
116 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
117 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
118 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
119 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
120 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
121 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
122 -rm -f $(DESTDIR)$(bindir)/slogin
123 ln -s ssh $(DESTDIR)$(bindir)/slogin
124 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
125 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
Damien Miller3d1b22c1999-11-12 15:46:08 +1100126
Damien Millerf066d6e1999-11-25 13:40:22 +1100127 if [ ! -z "@GNOME_ASKPASS@" ] ; then \
Damien Miller7d7c60d2000-01-26 14:37:48 +1100128 $(INSTALL) -d $(DESTDIR)$(libexecdir) ; \
129 $(INSTALL) -d $(DESTDIR)$(libexecdir)/ssh ; \
130 $(INSTALL) -s @GNOME_ASKPASS@ $(DESTDIR)${ASKPASS_LOCATION} ; \
Damien Miller3d1b22c1999-11-12 15:46:08 +1100131 fi
Damien Miller7f6ea021999-10-28 13:25:17 +1000132
Damien Miller7d7c60d2000-01-26 14:37:48 +1100133 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
134 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \
135 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
136 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
Damien Miller296a5461999-11-13 10:48:51 +1100137 fi
138
Damien Miller4095f892000-03-03 22:13:52 +1100139host-key: ssh-keygen
140 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ''
141
Damien Millerbf1c9b21999-12-09 10:16:54 +1100142uninstallall: uninstall
Damien Miller7d7c60d2000-01-26 14:37:48 +1100143 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
144 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
145 -rmdir $(DESTDIR)$(sysconfdir)
146 -rmdir $(DESTDIR)$(bindir)
147 -rmdir $(DESTDIR)$(sbindir)
148 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
149 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
150 -rmdir $(DESTDIR)$(mandir)
151 -rmdir $(DESTDIR)$(libexecdir)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100152
153uninstall:
Damien Miller7d7c60d2000-01-26 14:37:48 +1100154 -rm -f $(DESTDIR)$(bindir)/ssh
155 -rm -f $(DESTDIR)$(bindir)/scp
156 -rm -f $(DESTDIR)$(bindir)/ssh-add
157 -rm -f $(DESTDIR)$(bindir)/ssh-agent
158 -rm -f $(DESTDIR)$(bindir)/ssh-keygen
159 -rm -f $(DESTDIR)$(sbindir)/sshd
160 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
161 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
162 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
163 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
164 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
165 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
166 -rm -f $(DESTDIR)$(bindir)/slogin
167 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
168 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
169 -rmdir $(DESTDIR)$(libexecdir)/ssh ;