1# uncomment if you run a non bourne compatible shell. Ie. csh 2#SHELL = @SH@ 3 4AUTORECONF=autoreconf 5 6prefix=@prefix@ 7exec_prefix=@exec_prefix@ 8bindir=@bindir@ 9sbindir=@sbindir@ 10libexecdir=@libexecdir@ 11datadir=@datadir@ 12datarootdir=@datarootdir@ 13mandir=@mandir@ 14mansubdir=@mansubdir@ 15sysconfdir=@sysconfdir@ 16piddir=@piddir@ 17srcdir=@srcdir@ 18top_srcdir=@top_srcdir@ 19 20DESTDIR= 21VPATH=@srcdir@ 22SSH_PROGRAM=@bindir@/ssh 23ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass 24SFTP_SERVER=$(libexecdir)/sftp-server 25SSH_KEYSIGN=$(libexecdir)/ssh-keysign 26SSH_PKCS11_HELPER=$(libexecdir)/ssh-pkcs11-helper 27SSH_SK_HELPER=$(libexecdir)/ssh-sk-helper 28PRIVSEP_PATH=@PRIVSEP_PATH@ 29SSH_PRIVSEP_USER=@SSH_PRIVSEP_USER@ 30STRIP_OPT=@STRIP_OPT@ 31TEST_SHELL=@TEST_SHELL@ 32 33PATHS= -DSSHDIR=\"$(sysconfdir)\" \ 34 -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \ 35 -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \ 36 -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \ 37 -D_PATH_SSH_KEY_SIGN=\"$(SSH_KEYSIGN)\" \ 38 -D_PATH_SSH_PKCS11_HELPER=\"$(SSH_PKCS11_HELPER)\" \ 39 -D_PATH_SSH_SK_HELPER=\"$(SSH_SK_HELPER)\" \ 40 -D_PATH_SSH_PIDDIR=\"$(piddir)\" \ 41 -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\" 42 43CC=@CC@ 44LD=@LD@ 45CFLAGS=@CFLAGS@ 46CFLAGS_NOPIE=@CFLAGS_NOPIE@ 47CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@ 48PICFLAG=@PICFLAG@ 49LIBS=@LIBS@ 50K5LIBS=@K5LIBS@ 51GSSLIBS=@GSSLIBS@ 52SSHLIBS=@SSHLIBS@ 53SSHDLIBS=@SSHDLIBS@ 54LIBEDIT=@LIBEDIT@ 55LIBFIDO2=@LIBFIDO2@ 56AR=@AR@ 57AWK=@AWK@ 58RANLIB=@RANLIB@ 59INSTALL=@INSTALL@ 60SED=@SED@ 61ENT=@ENT@ 62XAUTH_PATH=@XAUTH_PATH@ 63LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@ 64LDFLAGS_NOPIE=-L. -Lopenbsd-compat/ @LDFLAGS_NOPIE@ 65EXEEXT=@EXEEXT@ 66MANFMT=@MANFMT@ 67MKDIR_P=@MKDIR_P@ 68 69.SUFFIXES: .lo 70 71TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-pkcs11-helper$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) sftp$(EXEEXT) ssh-sk-helper$(EXEEXT) 72 73XMSS_OBJS=\ 74 ssh-xmss.o \ 75 sshkey-xmss.o \ 76 xmss_commons.o \ 77 xmss_fast.o \ 78 xmss_hash.o \ 79 xmss_hash_address.o \ 80 xmss_wots.o 81 82LIBOPENSSH_OBJS=\ 83 ssh_api.o \ 84 ssherr.o \ 85 sshbuf.o \ 86 sshkey.o \ 87 sshbuf-getput-basic.o \ 88 sshbuf-misc.o \ 89 sshbuf-getput-crypto.o \ 90 krl.o \ 91 bitmap.o \ 92 ${XMSS_OBJS} 93 94LIBSSH_OBJS=${LIBOPENSSH_OBJS} \ 95 authfd.o authfile.o \ 96 canohost.o channels.o cipher.o cipher-aes.o cipher-aesctr.o \ 97 cipher-ctr.o cleanup.o \ 98 compat.o fatal.o hostfile.o \ 99 log.o match.o moduli.o nchan.o packet.o \ 100 readpass.o ttymodes.o xmalloc.o addrmatch.o \ 101 atomicio.o dispatch.o mac.o misc.o utf8.o \ 102 monitor_fdpass.o rijndael.o ssh-dss.o ssh-ecdsa.o ssh-ecdsa-sk.o \ 103 ssh-ed25519-sk.o ssh-rsa.o dh.o \ 104 msg.o progressmeter.o dns.o entropy.o gss-genr.o umac.o umac128.o \ 105 ssh-pkcs11.o smult_curve25519_ref.o \ 106 poly1305.o chacha.o cipher-chachapoly.o cipher-chachapoly-libcrypto.o \ 107 ssh-ed25519.o digest-openssl.o digest-libc.o \ 108 hmac.o sc25519.o ge25519.o fe25519.o ed25519.o verify.o hash.o \ 109 kex.o kexdh.o kexgex.o kexecdh.o kexc25519.o \ 110 kexgexc.o kexgexs.o \ 111 sntrup4591761.o kexsntrup4591761x25519.o kexgen.o \ 112 sftp-realpath.o platform-pledge.o platform-tracing.o platform-misc.o \ 113 sshbuf-io.o 114 115SKOBJS= ssh-sk-client.o 116 117SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ 118 sshconnect.o sshconnect2.o mux.o $(SKOBJS) 119 120SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o \ 121 audit.o audit-bsm.o audit-linux.o platform.o \ 122 sshpty.o sshlogin.o servconf.o serverloop.o \ 123 auth.o auth2.o auth-options.o session.o \ 124 auth2-chall.o groupaccess.o \ 125 auth-bsdauth.o auth2-hostbased.o auth2-kbdint.o \ 126 auth2-none.o auth2-passwd.o auth2-pubkey.o \ 127 monitor.o monitor_wrap.o auth-krb5.o \ 128 auth2-gss.o gss-serv.o gss-serv-krb5.o \ 129 loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o \ 130 sftp-server.o sftp-common.o \ 131 sandbox-null.o sandbox-rlimit.o sandbox-systrace.o sandbox-darwin.o \ 132 sandbox-seccomp-filter.o sandbox-capsicum.o sandbox-pledge.o \ 133 sandbox-solaris.o uidswap.o $(SKOBJS) 134 135SCP_OBJS= scp.o progressmeter.o 136 137SSHADD_OBJS= ssh-add.o $(SKOBJS) 138 139SSHAGENT_OBJS= ssh-agent.o ssh-pkcs11-client.o $(SKOBJS) 140 141SSHKEYGEN_OBJS= ssh-keygen.o sshsig.o $(SKOBJS) 142 143SSHKEYSIGN_OBJS=ssh-keysign.o readconf.o uidswap.o $(SKOBJS) 144 145P11HELPER_OBJS= ssh-pkcs11-helper.o ssh-pkcs11.o $(SKOBJS) 146 147SKHELPER_OBJS= ssh-sk-helper.o ssh-sk.o sk-usbhid.o 148 149SSHKEYSCAN_OBJS=ssh-keyscan.o $(SKOBJS) 150 151SFTPSERVER_OBJS=sftp-common.o sftp-server.o sftp-server-main.o 152 153SFTP_OBJS= sftp.o sftp-client.o sftp-common.o sftp-glob.o progressmeter.o 154 155MANPAGES = moduli.5.out scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-keysign.8.out ssh-pkcs11-helper.8.out ssh-sk-helper.8.out sshd_config.5.out ssh_config.5.out 156MANPAGES_IN = moduli.5 scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-keysign.8 ssh-pkcs11-helper.8 ssh-sk-helper.8 sshd_config.5 ssh_config.5 157MANTYPE = @MANTYPE@ 158 159CONFIGFILES=sshd_config.out ssh_config.out moduli.out 160CONFIGFILES_IN=sshd_config ssh_config moduli 161 162PATHSUBS = \ 163 -e 's|/etc/ssh/ssh_config|$(sysconfdir)/ssh_config|g' \ 164 -e 's|/etc/ssh/ssh_known_hosts|$(sysconfdir)/ssh_known_hosts|g' \ 165 -e 's|/etc/ssh/sshd_config|$(sysconfdir)/sshd_config|g' \ 166 -e 's|/usr/libexec|$(libexecdir)|g' \ 167 -e 's|/etc/shosts.equiv|$(sysconfdir)/shosts.equiv|g' \ 168 -e 's|/etc/ssh/ssh_host_key|$(sysconfdir)/ssh_host_key|g' \ 169 -e 's|/etc/ssh/ssh_host_ecdsa_key|$(sysconfdir)/ssh_host_ecdsa_key|g' \ 170 -e 's|/etc/ssh/ssh_host_dsa_key|$(sysconfdir)/ssh_host_dsa_key|g' \ 171 -e 's|/etc/ssh/ssh_host_rsa_key|$(sysconfdir)/ssh_host_rsa_key|g' \ 172 -e 's|/etc/ssh/ssh_host_ed25519_key|$(sysconfdir)/ssh_host_ed25519_key|g' \ 173 -e 's|/var/run/sshd.pid|$(piddir)/sshd.pid|g' \ 174 -e 's|/etc/moduli|$(sysconfdir)/moduli|g' \ 175 -e 's|/etc/ssh/moduli|$(sysconfdir)/moduli|g' \ 176 -e 's|/etc/ssh/sshrc|$(sysconfdir)/sshrc|g' \ 177 -e 's|/usr/X11R6/bin/xauth|$(XAUTH_PATH)|g' \ 178 -e 's|/var/empty|$(PRIVSEP_PATH)|g' \ 179 -e 's|/usr/bin:/bin:/usr/sbin:/sbin|@user_path@|g' 180 181FIXPATHSCMD = $(SED) $(PATHSUBS) 182FIXALGORITHMSCMD= $(SHELL) $(srcdir)/fixalgorithms $(SED) \ 183 @UNSUPPORTED_ALGORITHMS@ 184 185all: configure-check $(CONFIGFILES) $(MANPAGES) $(TARGETS) 186 187$(LIBSSH_OBJS): Makefile.in config.h 188$(SSHOBJS): Makefile.in config.h 189$(SSHDOBJS): Makefile.in config.h 190configure-check: $(srcdir)/configure 191 192$(srcdir)/configure: configure.ac aclocal.m4 193 @echo "ERROR: configure is out of date; please run ${AUTORECONF} (and configure)" 1>&2 194 @exit 1 195 196.c.o: 197 $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ 198 199LIBCOMPAT=openbsd-compat/libopenbsd-compat.a 200$(LIBCOMPAT): always 201 (cd openbsd-compat && $(MAKE)) 202always: 203 204libssh.a: $(LIBSSH_OBJS) 205 $(AR) rv $@ $(LIBSSH_OBJS) 206 $(RANLIB) $@ 207 208ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS) 209 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS) 210 211sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS) 212 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS) 213 214scp$(EXEEXT): $(LIBCOMPAT) libssh.a $(SCP_OBJS) 215 $(LD) -o $@ $(SCP_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 216 217ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHADD_OBJS) 218 $(LD) -o $@ $(SSHADD_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 219 220ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHAGENT_OBJS) 221 $(LD) -o $@ $(SSHAGENT_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 222 223ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHKEYGEN_OBJS) 224 $(LD) -o $@ $(SSHKEYGEN_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 225 226ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHKEYSIGN_OBJS) 227 $(LD) -o $@ $(SSHKEYSIGN_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 228 229ssh-pkcs11-helper$(EXEEXT): $(LIBCOMPAT) libssh.a $(P11HELPER_OBJS) 230 $(LD) -o $@ $(P11HELPER_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 231 232ssh-sk-helper$(EXEEXT): $(LIBCOMPAT) libssh.a $(SKHELPER_OBJS) 233 $(LD) -o $@ $(SKHELPER_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) $(LIBFIDO2) 234 235ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHKEYSCAN_OBJS) 236 $(LD) -o $@ $(SSHKEYSCAN_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS) 237 238sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a $(SFTPSERVER_OBJS) 239 $(LD) -o $@ $(SFTPSERVER_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 240 241sftp$(EXEEXT): $(LIBCOMPAT) libssh.a $(SFTP_OBJS) 242 $(LD) -o $@ $(SFTP_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(LIBEDIT) 243 244# test driver for the loginrec code - not built by default 245logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o 246 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS) 247 248$(MANPAGES): $(MANPAGES_IN) 249 if test "$(MANTYPE)" = "cat"; then \ 250 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \ 251 else \ 252 manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \ 253 fi; \ 254 if test "$(MANTYPE)" = "man"; then \ 255 $(FIXPATHSCMD) $${manpage} | $(FIXALGORITHMSCMD) | \ 256 $(AWK) -f $(srcdir)/mdoc2man.awk > $@; \ 257 else \ 258 $(FIXPATHSCMD) $${manpage} | $(FIXALGORITHMSCMD) > $@; \ 259 fi 260 261$(CONFIGFILES): $(CONFIGFILES_IN) 262 conffile=`echo $@ | sed 's/.out$$//'`; \ 263 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@ 264 265# fake rule to stop make trying to compile moduli.o into a binary "moduli.o" 266moduli: 267 echo 268 269clean: regressclean 270 rm -f *.o *.lo *.a $(TARGETS) logintest config.cache config.log 271 rm -f *.out core survey 272 rm -f regress/check-perm$(EXEEXT) 273 rm -f regress/mkdtemp$(EXEEXT) 274 rm -f regress/unittests/test_helper/*.a 275 rm -f regress/unittests/test_helper/*.o 276 rm -f regress/unittests/sshbuf/*.o 277 rm -f regress/unittests/sshbuf/test_sshbuf$(EXEEXT) 278 rm -f regress/unittests/sshkey/*.o 279 rm -f regress/unittests/sshkey/test_sshkey$(EXEEXT) 280 rm -f regress/unittests/bitmap/*.o 281 rm -f regress/unittests/bitmap/test_bitmap$(EXEEXT) 282 rm -f regress/unittests/conversion/*.o 283 rm -f regress/unittests/conversion/test_conversion$(EXEEXT) 284 rm -f regress/unittests/hostkeys/*.o 285 rm -f regress/unittests/hostkeys/test_hostkeys$(EXEEXT) 286 rm -f regress/unittests/kex/*.o 287 rm -f regress/unittests/kex/test_kex$(EXEEXT) 288 rm -f regress/unittests/match/*.o 289 rm -f regress/unittests/match/test_match$(EXEEXT) 290 rm -f regress/unittests/utf8/*.o 291 rm -f regress/unittests/utf8/test_utf8$(EXEEXT) 292 rm -f regress/misc/kexfuzz/*.o 293 rm -f regress/misc/kexfuzz/kexfuzz$(EXEEXT) 294 rm -f regress/misc/sk-dummy/*.o 295 rm -f regress/misc/sk-dummy/*.lo 296 rm -f regress/misc/sk-dummy/sk-dummy.so 297 (cd openbsd-compat && $(MAKE) clean) 298 299distclean: regressclean 300 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 301 rm -f *.out core opensshd.init openssh.xml 302 rm -f Makefile buildpkg.sh config.h config.status 303 rm -f survey.sh openbsd-compat/regress/Makefile *~ 304 rm -rf autom4te.cache 305 rm -f regress/check-perm 306 rm -f regress/mkdtemp 307 rm -f regress/unittests/test_helper/*.a 308 rm -f regress/unittests/test_helper/*.o 309 rm -f regress/unittests/sshbuf/*.o 310 rm -f regress/unittests/sshbuf/test_sshbuf 311 rm -f regress/unittests/sshkey/*.o 312 rm -f regress/unittests/sshkey/test_sshkey 313 rm -f regress/unittests/bitmap/*.o 314 rm -f regress/unittests/bitmap/test_bitmap 315 rm -f regress/unittests/conversion/*.o 316 rm -f regress/unittests/conversion/test_conversion 317 rm -f regress/unittests/hostkeys/*.o 318 rm -f regress/unittests/hostkeys/test_hostkeys 319 rm -f regress/unittests/kex/*.o 320 rm -f regress/unittests/kex/test_kex 321 rm -f regress/unittests/match/*.o 322 rm -f regress/unittests/match/test_match 323 rm -f regress/unittests/utf8/*.o 324 rm -f regress/unittests/utf8/test_utf8 325 rm -f regress/misc/kexfuzz/*.o 326 rm -f regress/misc/kexfuzz/kexfuzz$(EXEEXT) 327 (cd openbsd-compat && $(MAKE) distclean) 328 if test -d pkg ; then \ 329 rm -fr pkg ; \ 330 fi 331 332veryclean: distclean 333 rm -f configure config.h.in *.0 334 335cleandir: veryclean 336 337mrproper: veryclean 338 339realclean: veryclean 340 341catman-do: 342 @for f in $(MANPAGES_IN) ; do \ 343 base=`echo $$f | sed 's/\..*$$//'` ; \ 344 echo "$$f -> $$base.0" ; \ 345 $(MANFMT) $$f | cat -v | sed -e 's/.\^H//g' \ 346 >$$base.0 ; \ 347 done 348 349depend: depend-rebuild 350 rm -f .depend.bak 351 352depend-rebuild: 353 rm -f config.h 354 touch config.h .depend 355 makedepend -w1000 -Y. -f .depend *.c 2>/dev/null 356 (echo '# Automatically generated by makedepend.'; \ 357 echo '# Run "make depend" to rebuild.'; sort .depend ) >.depend.tmp 358 mv .depend.tmp .depend 359 rm -f config.h 360 361depend-check: depend-rebuild 362 cmp .depend .depend.bak || (echo .depend stale && exit 1) 363 364distprep: catman-do depend-check 365 $(AUTORECONF) 366 -rm -rf autom4te.cache .depend.bak 367 368install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf host-key check-config 369install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf 370install-nosysconf: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files 371 372check-config: 373 -$(DESTDIR)$(sbindir)/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config 374 375install-files: 376 $(MKDIR_P) $(DESTDIR)$(bindir) 377 $(MKDIR_P) $(DESTDIR)$(sbindir) 378 $(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)1 379 $(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)5 380 $(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)8 381 $(MKDIR_P) $(DESTDIR)$(libexecdir) 382 $(MKDIR_P) -m 0755 $(DESTDIR)$(PRIVSEP_PATH) 383 $(INSTALL) -m 0755 $(STRIP_OPT) ssh$(EXEEXT) $(DESTDIR)$(bindir)/ssh$(EXEEXT) 384 $(INSTALL) -m 0755 $(STRIP_OPT) scp$(EXEEXT) $(DESTDIR)$(bindir)/scp$(EXEEXT) 385 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-add$(EXEEXT) $(DESTDIR)$(bindir)/ssh-add$(EXEEXT) 386 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-agent$(EXEEXT) $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT) 387 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-keygen$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT) 388 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-keyscan$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT) 389 $(INSTALL) -m 0755 $(STRIP_OPT) sshd$(EXEEXT) $(DESTDIR)$(sbindir)/sshd$(EXEEXT) 390 $(INSTALL) -m 4711 $(STRIP_OPT) ssh-keysign$(EXEEXT) $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT) 391 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-pkcs11-helper$(EXEEXT) $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT) 392 $(INSTALL) -m 0755 $(STRIP_OPT) ssh-sk-helper$(EXEEXT) $(DESTDIR)$(SSH_SK_HELPER)$(EXEEXT) 393 $(INSTALL) -m 0755 $(STRIP_OPT) sftp$(EXEEXT) $(DESTDIR)$(bindir)/sftp$(EXEEXT) 394 $(INSTALL) -m 0755 $(STRIP_OPT) sftp-server$(EXEEXT) $(DESTDIR)$(SFTP_SERVER)$(EXEEXT) 395 $(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1 396 $(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1 397 $(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1 398 $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1 399 $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1 400 $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1 401 $(INSTALL) -m 644 moduli.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/moduli.5 402 $(INSTALL) -m 644 sshd_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/sshd_config.5 403 $(INSTALL) -m 644 ssh_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/ssh_config.5 404 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8 405 $(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1 406 $(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8 407 $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 408 $(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 409 $(INSTALL) -m 644 ssh-sk-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-sk-helper.8 410 411install-sysconf: 412 $(MKDIR_P) $(DESTDIR)$(sysconfdir) 413 @if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \ 414 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \ 415 else \ 416 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \ 417 fi 418 @if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \ 419 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \ 420 else \ 421 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \ 422 fi 423 @if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \ 424 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \ 425 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \ 426 mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \ 427 else \ 428 $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \ 429 fi ; \ 430 else \ 431 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \ 432 fi 433 434host-key: ssh-keygen$(EXEEXT) 435 @if [ -z "$(DESTDIR)" ] ; then \ 436 ./ssh-keygen -A; \ 437 fi 438 439host-key-force: ssh-keygen$(EXEEXT) ssh$(EXEEXT) 440 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" 441 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" 442 ./ssh-keygen -t ed25519 -f $(DESTDIR)$(sysconfdir)/ssh_host_ed25519_key -N "" 443 if ./ssh -Q key | grep ecdsa >/dev/null ; then \ 444 ./ssh-keygen -t ecdsa -f $(DESTDIR)$(sysconfdir)/ssh_host_ecdsa_key -N ""; \ 445 fi 446 447uninstallall: uninstall 448 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config 449 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config 450 -rmdir $(DESTDIR)$(sysconfdir) 451 -rmdir $(DESTDIR)$(bindir) 452 -rmdir $(DESTDIR)$(sbindir) 453 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1 454 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8 455 -rmdir $(DESTDIR)$(mandir) 456 -rmdir $(DESTDIR)$(libexecdir) 457 458uninstall: 459 -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT) 460 -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT) 461 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT) 462 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT) 463 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT) 464 -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT) 465 -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT) 466 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT) 467 -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT) 468 -rm -f $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT) 469 -rm -f $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT) 470 -rm -f $(DESTDIR)$(SSH_SK_HELPER)$(EXEEXT) 471 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1 472 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1 473 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1 474 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1 475 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1 476 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1 477 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1 478 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8 479 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8 480 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8 481 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8 482 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-sk-helper.8 483 484regress-prep: 485 $(MKDIR_P) `pwd`/regress/unittests/test_helper 486 $(MKDIR_P) `pwd`/regress/unittests/sshbuf 487 $(MKDIR_P) `pwd`/regress/unittests/sshkey 488 $(MKDIR_P) `pwd`/regress/unittests/bitmap 489 $(MKDIR_P) `pwd`/regress/unittests/conversion 490 $(MKDIR_P) `pwd`/regress/unittests/hostkeys 491 $(MKDIR_P) `pwd`/regress/unittests/kex 492 $(MKDIR_P) `pwd`/regress/unittests/match 493 $(MKDIR_P) `pwd`/regress/unittests/utf8 494 $(MKDIR_P) `pwd`/regress/misc/kexfuzz 495 $(MKDIR_P) `pwd`/regress/misc/sk-dummy 496 [ -f `pwd`/regress/Makefile ] || \ 497 ln -s `cd $(srcdir) && pwd`/regress/Makefile `pwd`/regress/Makefile 498 499REGRESSLIBS=libssh.a $(LIBCOMPAT) 500 501regress/modpipe$(EXEEXT): $(srcdir)/regress/modpipe.c $(REGRESSLIBS) 502 $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/modpipe.c \ 503 $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 504 505regress/setuid-allowed$(EXEEXT): $(srcdir)/regress/setuid-allowed.c $(REGRESSLIBS) 506 $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/setuid-allowed.c \ 507 $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 508 509regress/netcat$(EXEEXT): $(srcdir)/regress/netcat.c $(REGRESSLIBS) 510 $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/netcat.c \ 511 $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 512 513regress/check-perm$(EXEEXT): $(srcdir)/regress/check-perm.c $(REGRESSLIBS) 514 $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/check-perm.c \ 515 $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 516 517regress/mkdtemp$(EXEEXT): $(srcdir)/regress/mkdtemp.c $(REGRESSLIBS) 518 $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/mkdtemp.c \ 519 $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 520 521UNITTESTS_TEST_HELPER_OBJS=\ 522 regress/unittests/test_helper/test_helper.o \ 523 regress/unittests/test_helper/fuzz.o 524 525regress/unittests/test_helper/libtest_helper.a: ${UNITTESTS_TEST_HELPER_OBJS} 526 $(AR) rv $@ $(UNITTESTS_TEST_HELPER_OBJS) 527 $(RANLIB) $@ 528 529UNITTESTS_TEST_SSHBUF_OBJS=\ 530 regress/unittests/sshbuf/tests.o \ 531 regress/unittests/sshbuf/test_sshbuf.o \ 532 regress/unittests/sshbuf/test_sshbuf_getput_basic.o \ 533 regress/unittests/sshbuf/test_sshbuf_getput_crypto.o \ 534 regress/unittests/sshbuf/test_sshbuf_misc.o \ 535 regress/unittests/sshbuf/test_sshbuf_fuzz.o \ 536 regress/unittests/sshbuf/test_sshbuf_getput_fuzz.o \ 537 regress/unittests/sshbuf/test_sshbuf_fixed.o 538 539regress/unittests/sshbuf/test_sshbuf$(EXEEXT): ${UNITTESTS_TEST_SSHBUF_OBJS} \ 540 regress/unittests/test_helper/libtest_helper.a libssh.a 541 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_SSHBUF_OBJS) \ 542 regress/unittests/test_helper/libtest_helper.a \ 543 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 544 545UNITTESTS_TEST_SSHKEY_OBJS=\ 546 regress/unittests/sshkey/test_fuzz.o \ 547 regress/unittests/sshkey/tests.o \ 548 regress/unittests/sshkey/common.o \ 549 regress/unittests/sshkey/test_file.o \ 550 regress/unittests/sshkey/test_sshkey.o \ 551 $(SKOBJS) 552 553regress/unittests/sshkey/test_sshkey$(EXEEXT): ${UNITTESTS_TEST_SSHKEY_OBJS} \ 554 regress/unittests/test_helper/libtest_helper.a libssh.a 555 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_SSHKEY_OBJS) \ 556 regress/unittests/test_helper/libtest_helper.a \ 557 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 558 559UNITTESTS_TEST_BITMAP_OBJS=\ 560 regress/unittests/bitmap/tests.o 561 562regress/unittests/bitmap/test_bitmap$(EXEEXT): ${UNITTESTS_TEST_BITMAP_OBJS} \ 563 regress/unittests/test_helper/libtest_helper.a libssh.a 564 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_BITMAP_OBJS) \ 565 regress/unittests/test_helper/libtest_helper.a \ 566 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 567 568UNITTESTS_TEST_CONVERSION_OBJS=\ 569 regress/unittests/conversion/tests.o 570 571regress/unittests/conversion/test_conversion$(EXEEXT): \ 572 ${UNITTESTS_TEST_CONVERSION_OBJS} \ 573 regress/unittests/test_helper/libtest_helper.a libssh.a 574 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_CONVERSION_OBJS) \ 575 regress/unittests/test_helper/libtest_helper.a \ 576 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 577 578UNITTESTS_TEST_KEX_OBJS=\ 579 regress/unittests/kex/tests.o \ 580 regress/unittests/kex/test_kex.o \ 581 $(SKOBJS) 582 583regress/unittests/kex/test_kex$(EXEEXT): ${UNITTESTS_TEST_KEX_OBJS} \ 584 regress/unittests/test_helper/libtest_helper.a libssh.a 585 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_KEX_OBJS) \ 586 regress/unittests/test_helper/libtest_helper.a \ 587 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 588 589UNITTESTS_TEST_HOSTKEYS_OBJS=\ 590 regress/unittests/hostkeys/tests.o \ 591 regress/unittests/hostkeys/test_iterate.o \ 592 $(SKOBJS) 593 594regress/unittests/hostkeys/test_hostkeys$(EXEEXT): \ 595 ${UNITTESTS_TEST_HOSTKEYS_OBJS} \ 596 regress/unittests/test_helper/libtest_helper.a libssh.a 597 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_HOSTKEYS_OBJS) \ 598 regress/unittests/test_helper/libtest_helper.a \ 599 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 600 601UNITTESTS_TEST_MATCH_OBJS=\ 602 regress/unittests/match/tests.o 603 604regress/unittests/match/test_match$(EXEEXT): \ 605 ${UNITTESTS_TEST_MATCH_OBJS} \ 606 regress/unittests/test_helper/libtest_helper.a libssh.a 607 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_MATCH_OBJS) \ 608 regress/unittests/test_helper/libtest_helper.a \ 609 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 610 611UNITTESTS_TEST_UTF8_OBJS=\ 612 regress/unittests/utf8/tests.o 613 614regress/unittests/utf8/test_utf8$(EXEEXT): \ 615 ${UNITTESTS_TEST_UTF8_OBJS} \ 616 regress/unittests/test_helper/libtest_helper.a libssh.a 617 $(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_UTF8_OBJS) \ 618 regress/unittests/test_helper/libtest_helper.a \ 619 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 620 621MISC_KEX_FUZZ_OBJS=\ 622 regress/misc/kexfuzz/kexfuzz.o \ 623 $(SKOBJS) 624 625regress/misc/kexfuzz/kexfuzz$(EXEEXT): ${MISC_KEX_FUZZ_OBJS} libssh.a 626 $(LD) -o $@ $(LDFLAGS) $(MISC_KEX_FUZZ_OBJS) \ 627 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 628 629# These all need to be compiled -fPIC, so they are treated differently. 630SK_DUMMY_OBJS=\ 631 regress/misc/sk-dummy/sk-dummy.lo \ 632 regress/misc/sk-dummy/fatal.lo \ 633 ed25519.lo hash.lo ge25519.lo fe25519.lo sc25519.lo verify.lo 634 635.c.lo: Makefile.in config.h 636 $(CC) $(CFLAGS_NOPIE) $(PICFLAG) $(CPPFLAGS) -c $< -o $@ 637 638regress/misc/sk-dummy/sk-dummy.so: $(SK_DUMMY_OBJS) 639 $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -shared -o $@ $(SK_DUMMY_OBJS) \ 640 -L. -Lopenbsd-compat -lopenbsd-compat $(LDFLAGS_NOPIE) $(LIBS) 641 642regress-binaries: regress-prep $(LIBCOMPAT) \ 643 regress/modpipe$(EXEEXT) \ 644 regress/setuid-allowed$(EXEEXT) \ 645 regress/netcat$(EXEEXT) \ 646 regress/check-perm$(EXEEXT) \ 647 regress/mkdtemp$(EXEEXT) \ 648 regress/misc/sk-dummy/sk-dummy.so 649 650regress-unit-binaries: regress-prep $(REGRESSLIBS) \ 651 regress/unittests/sshbuf/test_sshbuf$(EXEEXT) \ 652 regress/unittests/sshkey/test_sshkey$(EXEEXT) \ 653 regress/unittests/bitmap/test_bitmap$(EXEEXT) \ 654 regress/unittests/conversion/test_conversion$(EXEEXT) \ 655 regress/unittests/hostkeys/test_hostkeys$(EXEEXT) \ 656 regress/unittests/kex/test_kex$(EXEEXT) \ 657 regress/unittests/match/test_match$(EXEEXT) \ 658 regress/unittests/utf8/test_utf8$(EXEEXT) \ 659 regress/misc/kexfuzz/kexfuzz$(EXEEXT) 660 661tests: file-tests t-exec interop-tests unit 662 echo all tests passed 663 664unit: regress-unit-binaries 665 BUILDDIR=`pwd`; \ 666 cd $(srcdir)/regress || exit $$?; \ 667 $(MAKE) \ 668 .OBJDIR="$${BUILDDIR}/regress" \ 669 .CURDIR="`pwd`" \ 670 $@ && echo $@ tests passed 671 672interop-tests t-exec file-tests: regress-prep regress-binaries $(TARGETS) 673 BUILDDIR=`pwd`; \ 674 cd $(srcdir)/regress || exit $$?; \ 675 EGREP='@EGREP@' \ 676 $(MAKE) \ 677 .OBJDIR="$${BUILDDIR}/regress" \ 678 .CURDIR="`pwd`" \ 679 BUILDDIR="$${BUILDDIR}" \ 680 OBJ="$${BUILDDIR}/regress/" \ 681 PATH="$${BUILDDIR}:$${PATH}" \ 682 TEST_ENV=MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \ 683 TEST_MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \ 684 TEST_SSH_SCP="$${BUILDDIR}/scp" \ 685 TEST_SSH_SSH="$${BUILDDIR}/ssh" \ 686 TEST_SSH_SSHD="$${BUILDDIR}/sshd" \ 687 TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent" \ 688 TEST_SSH_SSHADD="$${BUILDDIR}/ssh-add" \ 689 TEST_SSH_SSHKEYGEN="$${BUILDDIR}/ssh-keygen" \ 690 TEST_SSH_SSHPKCS11HELPER="$${BUILDDIR}/ssh-pkcs11-helper" \ 691 TEST_SSH_SSHKEYSCAN="$${BUILDDIR}/ssh-keyscan" \ 692 TEST_SSH_SFTP="$${BUILDDIR}/sftp" \ 693 TEST_SSH_PKCS11_HELPER="$${BUILDDIR}/ssh-pkcs11-helper" \ 694 TEST_SSH_SK_HELPER="$${BUILDDIR}/ssh-sk-helper" \ 695 TEST_SSH_SFTPSERVER="$${BUILDDIR}/sftp-server" \ 696 TEST_SSH_PLINK="plink" \ 697 TEST_SSH_PUTTYGEN="puttygen" \ 698 TEST_SSH_CONCH="conch" \ 699 TEST_SSH_IPV6="@TEST_SSH_IPV6@" \ 700 TEST_SSH_UTF8="@TEST_SSH_UTF8@" \ 701 TEST_SSH_ECC="@TEST_SSH_ECC@" \ 702 TEST_SHELL="${TEST_SHELL}" \ 703 EXEEXT="$(EXEEXT)" \ 704 $@ && echo all $@ passed 705 706compat-tests: $(LIBCOMPAT) 707 (cd openbsd-compat/regress && $(MAKE)) 708 709regressclean: 710 if [ -f regress/Makefile ] && [ -r regress/Makefile ]; then \ 711 (cd regress && $(MAKE) clean) \ 712 fi 713 714survey: survey.sh ssh 715 @$(SHELL) ./survey.sh > survey 716 @echo 'The survey results have been placed in the file "survey" in the' 717 @echo 'current directory. Please review the file then send with' 718 @echo '"make send-survey".' 719 720send-survey: survey 721 mail portable-survey@mindrot.org <survey 722 723package: $(CONFIGFILES) $(MANPAGES) $(TARGETS) 724 if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \ 725 sh buildpkg.sh; \ 726 fi 727 728# @DEPEND@ 729