Deleted Added
full compact
Makefile (117675) Makefile (125261)
1# $FreeBSD: head/kerberos5/Makefile 117675 2003-07-16 20:59:15Z markm $
1# $FreeBSD: head/kerberos5/Makefile 125261 2004-01-31 08:15:57Z ru $
2
2
3SUBDIR= doc lib libexec usr.bin usr.sbin
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}; \
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} ${MFLAGS} cleandir; \
14 ${MAKE} ${MFLAGS} obj; \
15 ${MAKE} ${MFLAGS} depend; \
16 ${MAKE} ${MFLAGS} all; \
17 ${MAKE} ${MFLAGS} install
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}; \
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} ${MFLAGS} -DNO_KERBEROS cleandir; \
25 ${MAKE} ${MFLAGS} -DNO_KERBEROS obj; \
26 ${MAKE} ${MFLAGS} -DNO_KERBEROS depend; \
27 ${MAKE} ${MFLAGS} -DNO_KERBEROS all; \
28 ${MAKE} ${MFLAGS} -DNO_KERBEROS install
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>
29.endfor
30
31.include <bsd.subdir.mk>