38 lines
931 B
Makefile
38 lines
931 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= lib libexec usr.bin usr.sbin
|
|
|
|
# These are the programs which depend on crypto, but not Kerberos.
|
|
SPROGS= lib/libfetch lib/libpam lib/libradius lib/libtelnet \
|
|
bin/ed libexec/telnetd usr.bin/fetch usr.bin/telnet \
|
|
usr.sbin/pkg_install usr.sbin/ppp usr.sbin/tcpdump/tcpdump
|
|
.if ${MK_SENDMAIL} != "no"
|
|
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} -DWITHOUT_CRYPT cleandir; \
|
|
${MAKE} -DWITHOUT_CRYPT obj; \
|
|
${MAKE} -DWITHOUT_CRYPT depend; \
|
|
${MAKE} -DWITHOUT_CRYPT all; \
|
|
${MAKE} -DWITHOUT_CRYPT install
|
|
.endfor
|
|
|
|
.include <bsd.subdir.mk>
|