1# $FreeBSD$ 2 3SUBDIR= lib libexec usr.bin usr.sbin 4 5# These are the programs which depend on crypto, but not Kerberos. 6SPROGS= bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/tcpdump/tcpdump \ 7 lib/libfetch usr.bin/fetch usr.sbin/pkg_install \ 8 lib/libpam \ 9 lib/libtelnet libexec/telnetd usr.bin/telnet 10.if !defined(NO_SENDMAIL) 11SPROGS+=usr.sbin/sendmail 12.endif 13 14# This target is used to rebuild these programs with crypto. 15secure: 16.for entry in ${SPROGS} 17 cd ${.CURDIR}/../${entry}; \ 18 ${MAKE} cleandir; \ 19 ${MAKE} obj; \ 20 ${MAKE} depend; \ 21 ${MAKE} all; \ 22 ${MAKE} install 23.endfor 24 25# This target is used to rebuild these programs without crypto. 26insecure: 27.for entry in ${SPROGS} 28 cd ${.CURDIR}/../${entry}; \ 29 ${MAKE} -DNOCRYPT cleandir; \ 30 ${MAKE} -DNOCRYPT obj; \ 31 ${MAKE} -DNOCRYPT depend; \ 32 ${MAKE} -DNOCRYPT all; \ 33 ${MAKE} -DNOCRYPT install 34.endfor 35 36.include <bsd.subdir.mk> 37