xref: /freebsd/kerberos5/Makefile (revision 7899f917b1c0ea178f1d2be0cfb452086d079d23)
1SUBDIR=	lib .WAIT \
2	libexec tools usr.bin usr.sbin
3SUBDIR_PARALLEL=
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:H}/${entry}; \
13	${MAKE} cleandir; \
14	${MAKE} obj; \
15	${MAKE} all; \
16	${MAKE} install
17.endfor
18
19# This target is used to rebuild these programs WITHOUT Kerberos.
20dekerberize:
21.for entry in ${KPROGS}
22	cd ${.CURDIR:H}/${entry}; \
23	${MAKE} MK_KERBEROS=no cleandir; \
24	${MAKE} MK_KERBEROS=no obj; \
25	${MAKE} MK_KERBEROS=no all; \
26	${MAKE} MK_KERBEROS=no install
27.endfor
28
29.include <bsd.subdir.mk>
30