aboutsummaryrefslogblamecommitdiff
path: root/secure/Makefile
blob: c6d2ff41e3451142f33f5d6cf900c19f5cff989c (plain) (tree)
1
2
3
4
5
6
7
8
9
           
 
                                    
 
                                                                  



                                                                 


                         
 














                                                               




                                      

       
                        
# $FreeBSD$

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/pppd		\
	usr.sbin/tcpdump/tcpdump
.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} -DNO_CRYPT cleandir; \
	${MAKE} -DNO_CRYPT obj; \
	${MAKE} -DNO_CRYPT depend; \
	${MAKE} -DNO_CRYPT all; \
	${MAKE} -DNO_CRYPT install
.endfor

.include <bsd.subdir.mk>