Replace ${CURDIR}/../.. with ${CURDIR:H:H} in elftoolchain
[freebsd-src.git] / kerberos5 / Makefile
blobe78084f6d1615c524d2d81b0f7f16a9da8d7e8a5
1 # $FreeBSD$
3 SUBDIR= lib .WAIT \
4 libexec tools usr.bin usr.sbin
5 SUBDIR_PARALLEL=
7 # These are the programs which depend on Kerberos.
8 KPROGS= lib/libpam \
9 secure/lib/libssh secure/usr.bin/ssh secure/usr.sbin/sshd
11 # This target is used to rebuild these programs WITH Kerberos.
12 kerberize:
13 .for entry in ${KPROGS}
14 cd ${.CURDIR}/../${entry}; \
15 ${MAKE} cleandir; \
16 ${MAKE} obj; \
17 ${MAKE} all; \
18 ${MAKE} install
19 .endfor
21 # This target is used to rebuild these programs WITHOUT Kerberos.
22 dekerberize:
23 .for entry in ${KPROGS}
24 cd ${.CURDIR}/../${entry}; \
25 ${MAKE} MK_KERBEROS=no cleandir; \
26 ${MAKE} MK_KERBEROS=no obj; \
27 ${MAKE} MK_KERBEROS=no all; \
28 ${MAKE} MK_KERBEROS=no install
29 .endfor
31 .include <bsd.subdir.mk>