config root man

Current Path : /usr/src/secure/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/src/secure/Makefile

# $FreeBSD: release/9.1.0/secure/Makefile 201210 2009-12-29 20:14:39Z trasz $

.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>

Man Man