1.include <src.opts.mk> 2.include "${SRCTOP}/secure/ssh.mk" 3 4CONFS= moduli sshd_config 5CONFSDIR= /etc/ssh 6PROG= sshd 7SRCS= sshd.c \ 8 platform-listen.c \ 9 servconf.c sshpty.c srclimit.c groupaccess.c auth2-methods.c 10PACKAGE= ssh 11 12MAN= sshd.8 sshd_config.5 13 14# Don't rebuild based on moduli.c 15moduli: .MADE 16 17LIBADD= ssh util 18 19.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no" 20LIBADD+= gssapi_krb5 gssapi krb5 21.endif 22 23.if ${MK_TCP_WRAPPERS} != "no" 24LIBADD+= wrap 25.endif 26 27LIBADD+= crypto 28 29.include <bsd.prog.mk> 30 31.PATH: ${SSHDIR} 32