aboutsummaryrefslogtreecommitdiff
path: root/kerberos5/Makefile
blob: c18111a4d6fe82e10a76a723c985ecba6d694733 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# $FreeBSD$

SUBDIR=	doc lib libexec usr.bin usr.sbin

# These are the programs which depend on Kerberos.
KPROGS=	secure/usr.bin/ssh secure/usr.sbin/sshd

# This target is used to rebuild these programs WITH Kerberos.
kerberize:
.for entry in ${KPROGS}
	cd ${.CURDIR}/../${entry}; \
	${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 cleandir; \
	${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 obj; \
	${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 depend; \
	${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 all; \
	${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 install
.endfor

# This target is used to rebuild these programs WITHOUT Kerberos.
dekerberize:
.for entry in ${KPROGS}
	cd ${.CURDIR}/../${entry}; \
	${MAKE} ${MFLAGS} cleandir; \
	${MAKE} ${MFLAGS} obj; \
	${MAKE} ${MFLAGS} depend; \
	${MAKE} ${MFLAGS} all; \
	${MAKE} ${MFLAGS} install
.endfor

.include <bsd.subdir.mk>