diff options
| author | Simon J. Gerraty <sjg@FreeBSD.org> | 2013-10-12 23:37:47 +0000 |
|---|---|---|
| committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2013-10-12 23:37:47 +0000 |
| commit | 43425d65d24b3f174acccf9059a5a1b8bd32458a (patch) | |
| tree | 644a0a2d1de678b76c8faea206ed65b530f63251 /include | |
| parent | 7f430eb166674d639af52389cd3c77eda78b517e (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index d7556935c2f57..2c6ac43661150 100644 --- a/include/Makefile +++ b/include/Makefile @@ -93,7 +93,7 @@ _libiconv_compat.h: ${.CURDIR}/Makefile echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h .endif .endif - + # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is @@ -178,6 +178,9 @@ compat: -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ -p ${DESTDIR}${INCLUDEDIR} > /dev/null .endif +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif copies: .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \ @@ -257,6 +260,9 @@ copies: cd ${.CURDIR}/../sys/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ ${DESTDIR}${INCLUDEDIR}/rpc +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif symlinks: @${ECHO} "Setting up symlinks to kernel source tree..." @@ -369,3 +375,6 @@ symlinks: ln -fs ../../../sys/rpc/$$h \ ${DESTDIR}${INCLUDEDIR}/rpc; \ done +.if ${MK_META_MODE} == "yes" + touch ${.TARGET} +.endif |
