1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5LIB= ssh 6PRIVATELIB= true 7SHLIB_MAJOR= 5 8SRCS= ssh_api.c ssherr.c \ 9 sshbuf.c sshkey.c sshbuf-getput-basic.c \ 10 sshbuf-misc.c sshbuf-getput-crypto.c krl.c bitmap.c 11SRCS+= authfd.c authfile.c \ 12 canohost.c channels.c cipher.c cipher-aes.c cipher-aesctr.c \ 13 cipher-ctr.c cleanup.c \ 14 compat.c fatal.c hostfile.c \ 15 log.c match.c moduli.c nchan.c packet.c \ 16 readpass.c ttymodes.c xmalloc.c addr.c addrmatch.c \ 17 atomicio.c dispatch.c mac.c misc.c utf8.c \ 18 monitor_fdpass.c rijndael.c ssh-dss.c ssh-ecdsa.c ssh-ecdsa-sk.c \ 19 ssh-ed25519-sk.c ssh-rsa.c dh.c \ 20 msg.c progressmeter.c dns.c entropy.c umac.c umac128.c \ 21 ssh-pkcs11.c smult_curve25519_ref.c \ 22 poly1305.c chacha.c cipher-chachapoly.c cipher-chachapoly-libcrypto.c \ 23 ssh-ed25519.c digest-openssl.c digest-libc.c \ 24 hmac.c sc25519.c ge25519.c fe25519.c ed25519.c verify.c hash.c \ 25 kex.c kexdh.c kexgex.c kexecdh.c kexc25519.c \ 26 kexgexc.c kexgexs.c \ 27 kexsntrup761x25519.c sntrup761.c kexgen.c \ 28 sftp-realpath.c platform-pledge.c platform-tracing.c platform-misc.c \ 29 sshbuf-io.c 30SRCS+= ssh-sk-client.c 31 32PACKAGE= ssh 33 34# gss-genr.c should be in $SRCS but causes linking problems, so it is 35# compiled directly into sshd instead. 36 37# Portability layer 38SRCS+= bcrypt_pbkdf.c blowfish.c bsd-misc.c bsd-signal.c explicit_bzero.c \ 39 fmt_scaled.c freezero.c glob.c \ 40 libressl-api-compat.c \ 41 openssl-compat.c port-net.c \ 42 recallocarray.c strtonum.c timingsafe_bcmp.c vis.c xcrypt.c 43 44.if ${MK_LDNS} == "no" 45SRCS+= getrrsetbyname.c 46.else 47LDNSDIR= ${SRCTOP}/contrib/ldns 48CFLAGS+= -DHAVE_LDNS=1 -I${LDNSDIR} 49SRCS+= getrrsetbyname-ldns.c 50LIBADD+= ldns 51.endif 52 53CFLAGS+= -I${SSHDIR} -include ssh_namespace.h 54SRCS+= ssh_namespace.h 55 56.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no" 57CFLAGS+= -include krb5_config.h 58SRCS+= krb5_config.h 59.endif 60 61.if defined(LOCALBASE) 62CFLAGS+= -D_PATH_SSH_ASKPASS_DEFAULT='"${LOCALBASE}/bin/ssh-askpass"' 63.endif 64 65NO_LINT= 66 67LIBADD+= crypto crypt z 68 69.include <bsd.lib.mk> 70 71.PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat 72