Makefile revision 125261
1# $FreeBSD: head/kerberos5/Makefile 125261 2004-01-31 08:15:57Z ru $
2
3SUBDIR=	doc tools lib libexec usr.bin usr.sbin
4
5# These are the programs which depend on Kerberos.
6KPROGS=	lib/libpam \
7	secure/lib/libssh secure/usr.bin/ssh secure/usr.sbin/sshd
8
9# This target is used to rebuild these programs WITH Kerberos.
10kerberize:
11.for entry in ${KPROGS}
12	cd ${.CURDIR}/../${entry}; \
13	${MAKE} cleandir; \
14	${MAKE} obj; \
15	${MAKE} depend; \
16	${MAKE} all; \
17	${MAKE} install
18.endfor
19
20# This target is used to rebuild these programs WITHOUT Kerberos.
21dekerberize:
22.for entry in ${KPROGS}
23	cd ${.CURDIR}/../${entry}; \
24	${MAKE} -DNO_KERBEROS cleandir; \
25	${MAKE} -DNO_KERBEROS obj; \
26	${MAKE} -DNO_KERBEROS depend; \
27	${MAKE} -DNO_KERBEROS all; \
28	${MAKE} -DNO_KERBEROS install
29.endfor
30
31.include <bsd.subdir.mk>
32