Deleted Added
full compact
Makefile (241298) Makefile (264156)
1# $FreeBSD: head/kerberos5/Makefile 241298 2012-10-06 20:01:05Z marcel $
1# $FreeBSD: head/kerberos5/Makefile 264156 2014-04-05 17:54:50Z imp $
2
3SUBDIR= doc lib libexec tools 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.

--- 6 unchanged lines hidden (view full) ---

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}; \
2
3SUBDIR= doc lib libexec tools 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.

--- 6 unchanged lines hidden (view full) ---

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} -DWITHOUT_KERBEROS cleandir; \
25 ${MAKE} -DWITHOUT_KERBEROS obj; \
26 ${MAKE} -DWITHOUT_KERBEROS depend; \
27 ${MAKE} -DWITHOUT_KERBEROS all; \
28 ${MAKE} -DWITHOUT_KERBEROS install
24 ${MAKE} MK_KERBEROS=no cleandir; \
25 ${MAKE} MK_KERBEROS=no obj; \
26 ${MAKE} MK_KERBEROS=no depend; \
27 ${MAKE} MK_KERBEROS=no all; \
28 ${MAKE} MK_KERBEROS=no install
29.endfor
30
31.include <bsd.subdir.mk>
29.endfor
30
31.include <bsd.subdir.mk>