freebsd-dev/secure/Makefile

37 lines
880 B
Makefile
Raw Normal View History

1999-08-28 01:35:59 +00:00
# $FreeBSD$
1994-08-07 19:04:10 +00:00
SUBDIR= lib libexec usr.bin usr.sbin
1994-08-07 19:04:10 +00:00
# These are the programs which depend on crypto, but not Kerberos.
SPROGS= bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/tcpdump/tcpdump \
lib/libfetch usr.bin/fetch usr.sbin/pkg_install \
lib/libpam \
lib/libtelnet libexec/telnetd usr.bin/telnet
.if !defined(NO_SENDMAIL)
SPROGS+=usr.sbin/sendmail
.endif
# This target is used to rebuild these programs with crypto.
secure:
.for entry in ${SPROGS}
cd ${.CURDIR}/../${entry}; \
${MAKE} cleandir; \
${MAKE} obj; \
${MAKE} depend; \
${MAKE} all; \
${MAKE} install
.endfor
# This target is used to rebuild these programs without crypto.
insecure:
.for entry in ${SPROGS}
cd ${.CURDIR}/../${entry}; \
${MAKE} -DNOCRYPT cleandir; \
${MAKE} -DNOCRYPT obj; \
${MAKE} -DNOCRYPT depend; \
${MAKE} -DNOCRYPT all; \
${MAKE} -DNOCRYPT install
.endfor
.include <bsd.subdir.mk>