1 2SUBDIR= lib .WAIT \ 3 libexec tools usr.bin usr.sbin 4SUBDIR_PARALLEL= 5 6# These are the programs which depend on Kerberos. 7KPROGS= lib/libpam \ 8 secure/lib/libssh secure/usr.bin/ssh secure/usr.sbin/sshd 9 10# This target is used to rebuild these programs WITH Kerberos. 11kerberize: 12.for entry in ${KPROGS} 13 cd ${.CURDIR:H}/${entry}; \ 14 ${MAKE} cleandir; \ 15 ${MAKE} obj; \ 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:H}/${entry}; \ 24 ${MAKE} MK_KERBEROS=no cleandir; \ 25 ${MAKE} MK_KERBEROS=no obj; \ 26 ${MAKE} MK_KERBEROS=no all; \ 27 ${MAKE} MK_KERBEROS=no install 28.endfor 29 30.include <bsd.subdir.mk> 31