blob: d5e3fde6c4ba381ed4602aa79a1004ce8a2f3188 [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 Miller166bd442000-03-16 10:48:25 +110022LD=@LD@
Damien Miller3bc14dd1999-12-07 14:54:53 +110023PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
Damien Millerc7b38ce1999-11-09 10:28:04 +110024CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
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 Miller34132e52000-01-14 15:45:46 +110032TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
Damien Miller7f6ea021999-10-28 13:25:17 +100033
Damien Millereba71ba2000-04-29 23:57:08 +100034LIBOBJS= atomicio.o authfd.o authfile.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.o bsd-setenv.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 dispatch.o dsa.o fake-getaddrinfo.o fake-getnameinfo.o fingerprint.o hmac.o hostfile.o key.o kex.o log.o match.o mpaux.o nchan.o packet.o radix.o entropy.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o
Damien Miller18ccf851999-12-16 13:06:18 +110035
Damien Millereba71ba2000-04-29 23:57:08 +100036SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
Damien Millere72b7af1999-12-30 15:08:44 +110037
Damien Millereba71ba2000-04-29 23:57:08 +100038SSHDOBJS= sshd.o auth.o auth1.o auth2.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 session.o
Damien Millere72b7af1999-12-30 15:08:44 +110039
Damien Miller670a4b82000-01-22 13:53:11 +110040TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
41CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
42MANPAGES = @MANTYPE@
Damien Miller645c5982000-01-03 14:42:09 +110043
44CONFIGFILES=sshd_config ssh_config
45
Damien Miller6d844932000-01-26 12:17:50 +110046PATHSUBS = -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 +110047
48FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
49
Damien Miller74a333b2000-04-04 15:04:09 +100050all: $(TARGETS) $(CONFIGFILES)
51
52manpages: $(MANPAGES)
Damien Miller18ccf851999-12-16 13:06:18 +110053
Damien Miller32b3cf21999-12-26 10:21:48 +110054$(LIBOBJS): config.h
55
Damien Miller18ccf851999-12-16 13:06:18 +110056libssh.a: $(LIBOBJS)
57 $(AR) rv $@ $(LIBOBJS)
Damien Miller7f6ea021999-10-28 13:25:17 +100058 $(RANLIB) $@
59
Damien Miller34132e52000-01-14 15:45:46 +110060ssh: libssh.a $(SSHOBJS)
Damien Miller166bd442000-03-16 10:48:25 +110061 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100062
Damien Miller34132e52000-01-14 15:45:46 +110063sshd: libssh.a $(SSHDOBJS)
Damien Miller166bd442000-03-16 10:48:25 +110064 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100065
Damien Miller34132e52000-01-14 15:45:46 +110066scp: libssh.a scp.o
Damien Miller166bd442000-03-16 10:48:25 +110067 $(LD) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100068
Damien Miller34132e52000-01-14 15:45:46 +110069ssh-add: libssh.a ssh-add.o log-client.o
Damien Miller166bd442000-03-16 10:48:25 +110070 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100071
Damien Miller34132e52000-01-14 15:45:46 +110072ssh-agent: libssh.a ssh-agent.o log-client.o
Damien Miller166bd442000-03-16 10:48:25 +110073 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100074
Damien Miller34132e52000-01-14 15:45:46 +110075ssh-keygen: libssh.a ssh-keygen.o log-client.o
Damien Miller166bd442000-03-16 10:48:25 +110076 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100077
Damien Miller886c63a2000-01-20 23:13:36 +110078$(MANPAGES) $(CONFIGFILES)::
79 $(FIXPATHSCMD) $(srcdir)/$@
Damien Miller645c5982000-01-03 14:42:09 +110080
Damien Miller34132e52000-01-14 15:45:46 +110081clean:
82 rm -f *.o *.a $(TARGETS) config.status config.cache config.log
Damien Miller886c63a2000-01-20 23:13:36 +110083 rm -f *.out core
Damien Miller34132e52000-01-14 15:45:46 +110084
85distclean: clean
86 rm -f Makefile config.h core *~
87
88mrproper: distclean
89
90veryclean: distclean
Damien Miller670a4b82000-01-22 13:53:11 +110091 rm -f configure config.h.in *.0
92
93catman-do:
94 @for f in $(TROFFMAN) ; do \
95 echo "$$f -> $${f%%.[18]}.0" ; \
96 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
97 >$${f%%.[18]}.0 ; \
98 done
Damien Miller34132e52000-01-14 15:45:46 +110099
Damien Miller74a333b2000-04-04 15:04:09 +1000100install: manpages $(TARGETS)
Damien Miller7d7c60d2000-01-26 14:37:48 +1100101 $(INSTALL) -d $(DESTDIR)$(bindir)
102 $(INSTALL) -d $(DESTDIR)$(sbindir)
103 $(INSTALL) -d $(DESTDIR)$(mandir)
104 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)1
105 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)8
Damien Miller3aa0fa42000-01-27 14:15:48 +1100106 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
Damien Miller7d7c60d2000-01-26 14:37:48 +1100107 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
108 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
109 $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
110 $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
111 $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
112 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
113 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
114 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
115 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
116 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
117 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
118 -rm -f $(DESTDIR)$(bindir)/slogin
119 ln -s ssh $(DESTDIR)$(bindir)/slogin
120 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
121 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
Damien Miller3d1b22c1999-11-12 15:46:08 +1100122
Damien Miller7d7c60d2000-01-26 14:37:48 +1100123 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
124 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \
125 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
126 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
Damien Miller296a5461999-11-13 10:48:51 +1100127 fi
128
Damien Miller4095f892000-03-03 22:13:52 +1100129host-key: ssh-keygen
130 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ''
131
Damien Millerbf1c9b21999-12-09 10:16:54 +1100132uninstallall: uninstall
Damien Miller7d7c60d2000-01-26 14:37:48 +1100133 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
134 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
135 -rmdir $(DESTDIR)$(sysconfdir)
136 -rmdir $(DESTDIR)$(bindir)
137 -rmdir $(DESTDIR)$(sbindir)
138 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
139 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
140 -rmdir $(DESTDIR)$(mandir)
141 -rmdir $(DESTDIR)$(libexecdir)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100142
143uninstall:
Damien Miller7d7c60d2000-01-26 14:37:48 +1100144 -rm -f $(DESTDIR)$(bindir)/ssh
145 -rm -f $(DESTDIR)$(bindir)/scp
146 -rm -f $(DESTDIR)$(bindir)/ssh-add
147 -rm -f $(DESTDIR)$(bindir)/ssh-agent
148 -rm -f $(DESTDIR)$(bindir)/ssh-keygen
149 -rm -f $(DESTDIR)$(sbindir)/sshd
150 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
151 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
152 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
153 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
154 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
155 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
156 -rm -f $(DESTDIR)$(bindir)/slogin
157 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
158 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
159 -rmdir $(DESTDIR)$(libexecdir)/ssh ;