blob: 39f2f9959d8a85b7bf8d47320fd046ee2d9b95d7 [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 Miller0437b332000-05-02 09:56:41 +100032INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
33
Damien Miller34132e52000-01-14 15:45:46 +110034TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
Damien Miller7f6ea021999-10-28 13:25:17 +100035
Damien Miller16e519c2000-05-09 14:28:55 +100036LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dispatch.o dsa.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
37
38LIBOPENBSD_COMPAT_OBJS=bsd-base64.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 fake-getaddrinfo.o fake-getnameinfo.o
Damien Miller18ccf851999-12-16 13:06:18 +110039
Damien Millereba71ba2000-04-29 23:57:08 +100040SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
Damien Millere72b7af1999-12-30 15:08:44 +110041
Damien Millereba71ba2000-04-29 23:57:08 +100042SSHDOBJS= 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 +110043
Damien Miller670a4b82000-01-22 13:53:11 +110044TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
45CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
46MANPAGES = @MANTYPE@
Damien Miller645c5982000-01-03 14:42:09 +110047
48CONFIGFILES=sshd_config ssh_config
49
Damien Miller6d844932000-01-26 12:17:50 +110050PATHSUBS = -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 +110051
52FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
53
Damien Miller74a333b2000-04-04 15:04:09 +100054all: $(TARGETS) $(CONFIGFILES)
55
56manpages: $(MANPAGES)
Damien Miller18ccf851999-12-16 13:06:18 +110057
Damien Miller16e519c2000-05-09 14:28:55 +100058$(LIBSSH_OBJS): config.h
Damien Miller32b3cf21999-12-26 10:21:48 +110059
Damien Miller16e519c2000-05-09 14:28:55 +100060$(LIBOPENBSD_COMPAT_OBJS): config.h
61
62libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
63 $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
Damien Miller7f6ea021999-10-28 13:25:17 +100064 $(RANLIB) $@
65
Damien Miller16e519c2000-05-09 14:28:55 +100066libssh.a: $(LIBSSH_OBJS)
67 $(AR) rv $@ $(LIBSSH_OBJS)
68 $(RANLIB) $@
Damien Miller7f6ea021999-10-28 13:25:17 +100069
Damien Miller16e519c2000-05-09 14:28:55 +100070ssh: libopenbsd-compat.a libssh.a $(SSHOBJS)
71 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100072
Damien Miller16e519c2000-05-09 14:28:55 +100073sshd: libssh.a libopenbsd-compat.a $(SSHDOBJS)
74 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100075
Damien Miller16e519c2000-05-09 14:28:55 +100076scp: libopenbsd-compat.a libssh.a scp.o
77 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100078
Damien Miller16e519c2000-05-09 14:28:55 +100079ssh-add: libopenbsd-compat.a libssh.a ssh-add.o log-client.o
80 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100081
Damien Miller16e519c2000-05-09 14:28:55 +100082ssh-agent: libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
83 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
84
85ssh-keygen: libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
86 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100087
Damien Miller886c63a2000-01-20 23:13:36 +110088$(MANPAGES) $(CONFIGFILES)::
89 $(FIXPATHSCMD) $(srcdir)/$@
Damien Miller645c5982000-01-03 14:42:09 +110090
Damien Miller34132e52000-01-14 15:45:46 +110091clean:
92 rm -f *.o *.a $(TARGETS) config.status config.cache config.log
Damien Miller0437b332000-05-02 09:56:41 +100093 rm -f *.out ssh_prng_cmds core
Damien Miller34132e52000-01-14 15:45:46 +110094
95distclean: clean
96 rm -f Makefile config.h core *~
97
98mrproper: distclean
99
100veryclean: distclean
Damien Miller670a4b82000-01-22 13:53:11 +1100101 rm -f configure config.h.in *.0
102
103catman-do:
104 @for f in $(TROFFMAN) ; do \
105 echo "$$f -> $${f%%.[18]}.0" ; \
106 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
107 >$${f%%.[18]}.0 ; \
108 done
Damien Miller34132e52000-01-14 15:45:46 +1100109
Damien Miller74a333b2000-04-04 15:04:09 +1000110install: manpages $(TARGETS)
Damien Miller7d7c60d2000-01-26 14:37:48 +1100111 $(INSTALL) -d $(DESTDIR)$(bindir)
112 $(INSTALL) -d $(DESTDIR)$(sbindir)
113 $(INSTALL) -d $(DESTDIR)$(mandir)
114 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)1
115 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)8
Damien Miller3aa0fa42000-01-27 14:15:48 +1100116 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
Damien Miller7d7c60d2000-01-26 14:37:48 +1100117 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
118 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
119 $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
120 $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
121 $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
122 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
123 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
124 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
125 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
126 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
127 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
128 -rm -f $(DESTDIR)$(bindir)/slogin
129 ln -s ssh $(DESTDIR)$(bindir)/slogin
130 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
131 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
Damien Miller3d1b22c1999-11-12 15:46:08 +1100132
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
Damien Miller0437b332000-05-02 09:56:41 +1000138 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
139 $(INSTALL) -m 644 ssh_prng_cmds $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
140 fi
Damien Miller296a5461999-11-13 10:48:51 +1100141
Damien Miller4095f892000-03-03 22:13:52 +1100142host-key: ssh-keygen
143 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ''
Damien Miller58e579b2000-05-08 00:05:31 +1000144 ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N ''
Damien Miller4095f892000-03-03 22:13:52 +1100145
Damien Millerbf1c9b21999-12-09 10:16:54 +1100146uninstallall: uninstall
Damien Miller7d7c60d2000-01-26 14:37:48 +1100147 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
148 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
Damien Miller0437b332000-05-02 09:56:41 +1000149 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
Damien Miller7d7c60d2000-01-26 14:37:48 +1100150 -rmdir $(DESTDIR)$(sysconfdir)
151 -rmdir $(DESTDIR)$(bindir)
152 -rmdir $(DESTDIR)$(sbindir)
153 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
154 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
155 -rmdir $(DESTDIR)$(mandir)
156 -rmdir $(DESTDIR)$(libexecdir)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100157
158uninstall:
Damien Miller7d7c60d2000-01-26 14:37:48 +1100159 -rm -f $(DESTDIR)$(bindir)/ssh
160 -rm -f $(DESTDIR)$(bindir)/scp
161 -rm -f $(DESTDIR)$(bindir)/ssh-add
162 -rm -f $(DESTDIR)$(bindir)/ssh-agent
163 -rm -f $(DESTDIR)$(bindir)/ssh-keygen
164 -rm -f $(DESTDIR)$(sbindir)/sshd
165 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
166 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
167 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
168 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
169 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
170 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
171 -rm -f $(DESTDIR)$(bindir)/slogin
172 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
173 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
174 -rmdir $(DESTDIR)$(libexecdir)/ssh ;