diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2018-01-08 15:37:39 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2018-01-08 15:37:39 +0000 |
commit | de43a2634fb626115d9ae70ae9a8632b3ca000b2 (patch) | |
tree | 76ecea38f90253d441f6d9c48507e0033096faf7 /usr.bin/ssh/ssh-keyscan | |
parent | c5c1247ee80ff5ac04f066ba23b5a071ba78d33b (diff) |
group shared source files (e.g. SRCS_KEX) and allow compilation w/o OPENSSL
ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan/Makefile | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/usr.bin/ssh/ssh-keyscan/Makefile b/usr.bin/ssh/ssh-keyscan/Makefile index 1e7897174c8..871ac911bf9 100644 --- a/usr.bin/ssh/ssh-keyscan/Makefile +++ b/usr.bin/ssh/ssh-keyscan/Makefile @@ -1,20 +1,11 @@ -# $OpenBSD: Makefile,v 1.10 2017/12/14 21:07:39 naddy Exp $ +# $OpenBSD: Makefile,v 1.11 2018/01/08 15:37:28 markus Exp $ .PATH: ${.CURDIR}/.. SRCS= ssh-keyscan.c - -SRCS+= addrmatch.c atomicio.c canohost.c chacha.c \ - cipher-chachapoly.c cipher.c cleanup.c compat.c dh.c digest-openssl.c \ - dispatch.c ed25519.c fe25519.c ge25519.c hash.c hmac.c hostfile.c \ - kex.c kexc25519.c kexc25519c.c kexc25519s.c kexdh.c kexdhc.c kexdhs.c \ - kexecdh.c kexecdhc.c kexecdhs.c kexgex.c kexgexc.c kexgexs.c log.c \ - mac.c match.c misc.c packet.c poly1305.c sc25519.c \ - smult_curve25519_ref.c ssh-dss.c ssh-ecdsa.c ssh-ed25519.c ssh-rsa.c \ - ssh_api.c sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c \ - sshbuf.c ssherr.c sshkey.c uidswap.c umac.c umac128.c verify.c \ - xmalloc.c - +SRCS+= atomicio.c cleanup.c compat.c hostfile.c ssh_api.c +SRCS+= ${SRCS_BASE} ${SRCS_KEX} ${SRCS_KEXC} ${SRCS_KEXS} ${SRCS_KEY} \ + ${SRCS_PKT} ${SRCS_UTL} PROG= ssh-keyscan BINOWN= root |