blob: 573b92ce662ad726021c930600e54881383be046 [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 Miller8d1fd572000-05-17 21:34:07 +100030ENT=@ENT@
Damien Miller18ccf851999-12-16 13:06:18 +110031LDFLAGS=-L. @LDFLAGS@
Damien Miller7f6ea021999-10-28 13:25:17 +100032
Damien Miller0437b332000-05-02 09:56:41 +100033INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
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 Millerdcb6ecd2000-05-17 22:34:22 +100037LIBSSH_OBJS=atomicio.o authfd.o authfile.o aux.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
Damien Miller16e519c2000-05-09 14:28:55 +100038
Damien Miller0f91b4e2000-06-18 15:43:25 +100039LIBOPENBSD_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 next-posix.o
Damien Miller18ccf851999-12-16 13:06:18 +110040
Damien Millereba71ba2000-04-29 23:57:08 +100041SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
Damien Millere72b7af1999-12-30 15:08:44 +110042
Damien Millerf6d9e222000-06-18 14:50:44 +100043SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o
Damien Millere72b7af1999-12-30 15:08:44 +110044
Damien Miller670a4b82000-01-22 13:53:11 +110045TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
46CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
47MANPAGES = @MANTYPE@
Damien Miller645c5982000-01-03 14:42:09 +110048
49CONFIGFILES=sshd_config ssh_config
50
Damien Miller6d844932000-01-26 12:17:50 +110051PATHSUBS = -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 +110052
53FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
54
Damien Miller74a333b2000-04-04 15:04:09 +100055all: $(TARGETS) $(CONFIGFILES)
56
57manpages: $(MANPAGES)
Damien Miller18ccf851999-12-16 13:06:18 +110058
Damien Miller16e519c2000-05-09 14:28:55 +100059$(LIBSSH_OBJS): config.h
Damien Miller32b3cf21999-12-26 10:21:48 +110060
Damien Miller16e519c2000-05-09 14:28:55 +100061$(LIBOPENBSD_COMPAT_OBJS): config.h
62
63libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
64 $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
Damien Miller7f6ea021999-10-28 13:25:17 +100065 $(RANLIB) $@
66
Damien Miller16e519c2000-05-09 14:28:55 +100067libssh.a: $(LIBSSH_OBJS)
68 $(AR) rv $@ $(LIBSSH_OBJS)
69 $(RANLIB) $@
Damien Miller7f6ea021999-10-28 13:25:17 +100070
Damien Miller16e519c2000-05-09 14:28:55 +100071ssh: libopenbsd-compat.a libssh.a $(SSHOBJS)
72 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100073
Damien Miller16e519c2000-05-09 14:28:55 +100074sshd: libssh.a libopenbsd-compat.a $(SSHDOBJS)
75 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100076
Damien Miller16e519c2000-05-09 14:28:55 +100077scp: libopenbsd-compat.a libssh.a scp.o
78 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100079
Damien Miller16e519c2000-05-09 14:28:55 +100080ssh-add: libopenbsd-compat.a libssh.a ssh-add.o log-client.o
81 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100082
Damien Miller16e519c2000-05-09 14:28:55 +100083ssh-agent: libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
84 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
85
86ssh-keygen: libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
87 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Damien Miller7f6ea021999-10-28 13:25:17 +100088
andre2ff7b5d2000-06-03 14:57:40 +000089# test driver for the loginrec code - not built by default
90logintest: logintest.o libopenbsd-compat.a libssh.a log-client.o loginrec.o
91 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh log-client.o $(LIBS)
92
Damien Miller886c63a2000-01-20 23:13:36 +110093$(MANPAGES) $(CONFIGFILES)::
94 $(FIXPATHSCMD) $(srcdir)/$@
Damien Miller645c5982000-01-03 14:42:09 +110095
Damien Miller34132e52000-01-14 15:45:46 +110096clean:
andre2ff7b5d2000-06-03 14:57:40 +000097 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
Damien Miller615f9392000-05-17 22:53:33 +100098 rm -f *.out core
Damien Miller34132e52000-01-14 15:45:46 +110099
100distclean: clean
Damien Miller615f9392000-05-17 22:53:33 +1000101 rm -f Makefile config.h config.status ssh_prng_cmds *~
Damien Miller34132e52000-01-14 15:45:46 +1100102
103mrproper: distclean
104
105veryclean: distclean
Damien Miller670a4b82000-01-22 13:53:11 +1100106 rm -f configure config.h.in *.0
107
108catman-do:
109 @for f in $(TROFFMAN) ; do \
110 echo "$$f -> $${f%%.[18]}.0" ; \
111 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
112 >$${f%%.[18]}.0 ; \
113 done
Damien Miller34132e52000-01-14 15:45:46 +1100114
Damien Miller262ff172000-06-28 08:24:49 +1000115distprep: catman-do
116 autoreconf
117
Damien Miller099f5052000-06-22 20:57:11 +1000118install: manpages $(TARGETS) install-files host-key
119
120install-files:
Damien Millerfda78d92000-05-20 15:33:44 +1000121 ./mkinstalldirs $(DESTDIR)$(bindir)
122 ./mkinstalldirs $(DESTDIR)$(sbindir)
123 ./mkinstalldirs $(DESTDIR)$(mandir)
124 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
125 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
Damien Miller3aa0fa42000-01-27 14:15:48 +1100126 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
Damien Miller7d7c60d2000-01-26 14:37:48 +1100127 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
128 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
129 $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
130 $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
131 $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
132 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
133 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
134 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
135 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
136 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
137 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
138 -rm -f $(DESTDIR)$(bindir)/slogin
139 ln -s ssh $(DESTDIR)$(bindir)/slogin
140 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
141 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
Damien Miller7d7c60d2000-01-26 14:37:48 +1100142 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
Damien Millerfda78d92000-05-20 15:33:44 +1000143 ./mkinstalldirs $(DESTDIR)$(sysconfdir); \
Damien Miller7d7c60d2000-01-26 14:37:48 +1100144 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
145 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
Damien Miller296a5461999-11-13 10:48:51 +1100146 fi
Damien Miller0437b332000-05-02 09:56:41 +1000147 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
Damien Miller8d1fd572000-05-17 21:34:07 +1000148 $(PERL) fixprogs ssh_prng_cmds $(ENT); \
149 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
Damien Miller0437b332000-05-02 09:56:41 +1000150 fi
Damien Miller296a5461999-11-13 10:48:51 +1100151
Damien Miller4095f892000-03-03 22:13:52 +1100152host-key: ssh-keygen
Damien Miller099f5052000-06-22 20:57:11 +1000153 if [ -f "$(sysconfdir)/ssh_host_key" ] ; then \
154 echo "$(sysconfdir)/ssh_host_key already exists, skipping." ; \
155 else \
156 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N "" ; \
157 fi ; \
158 if [ -f $(sysconfdir)/ssh_host_dsa_key ] ; then \
159 echo "$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
160 else \
161 ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N "" ; \
162 fi ;
163
164host-key-force: ssh-keygen
Damien Miller95fe91b2000-05-13 12:31:22 +1000165 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ""
166 ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N ""
Damien Miller4095f892000-03-03 22:13:52 +1100167
Damien Millerbf1c9b21999-12-09 10:16:54 +1100168uninstallall: uninstall
Damien Miller7d7c60d2000-01-26 14:37:48 +1100169 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
170 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
Damien Miller0437b332000-05-02 09:56:41 +1000171 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
Damien Miller7d7c60d2000-01-26 14:37:48 +1100172 -rmdir $(DESTDIR)$(sysconfdir)
173 -rmdir $(DESTDIR)$(bindir)
174 -rmdir $(DESTDIR)$(sbindir)
175 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
176 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
177 -rmdir $(DESTDIR)$(mandir)
178 -rmdir $(DESTDIR)$(libexecdir)
Damien Millerbf1c9b21999-12-09 10:16:54 +1100179
180uninstall:
Damien Miller7d7c60d2000-01-26 14:37:48 +1100181 -rm -f $(DESTDIR)$(bindir)/ssh
182 -rm -f $(DESTDIR)$(bindir)/scp
183 -rm -f $(DESTDIR)$(bindir)/ssh-add
184 -rm -f $(DESTDIR)$(bindir)/ssh-agent
185 -rm -f $(DESTDIR)$(bindir)/ssh-keygen
186 -rm -f $(DESTDIR)$(sbindir)/sshd
187 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
188 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
189 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
190 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
191 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
192 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
193 -rm -f $(DESTDIR)$(bindir)/slogin
194 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
195 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
196 -rmdir $(DESTDIR)$(libexecdir)/ssh ;