2d2813618c
To be able to info pages consider installing texinfo from ports print/texinfo or via pkg: pkg install texinfo Differential Revision: https://reviews.freebsd.org/D1409 Reviewed by: emaste, imp (previous version) Relnotes: yes
32 lines
746 B
Makefile
32 lines
746 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= lib libexec tools usr.bin usr.sbin
|
|
|
|
# These are the programs which depend on Kerberos.
|
|
KPROGS= lib/libpam \
|
|
secure/lib/libssh 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} cleandir; \
|
|
${MAKE} obj; \
|
|
${MAKE} depend; \
|
|
${MAKE} all; \
|
|
${MAKE} install
|
|
.endfor
|
|
|
|
# This target is used to rebuild these programs WITHOUT Kerberos.
|
|
dekerberize:
|
|
.for entry in ${KPROGS}
|
|
cd ${.CURDIR}/../${entry}; \
|
|
${MAKE} MK_KERBEROS=no cleandir; \
|
|
${MAKE} MK_KERBEROS=no obj; \
|
|
${MAKE} MK_KERBEROS=no depend; \
|
|
${MAKE} MK_KERBEROS=no all; \
|
|
${MAKE} MK_KERBEROS=no install
|
|
.endfor
|
|
|
|
.include <bsd.subdir.mk>
|