In meta mode touch targets like copies so we don't needlessly repeat them.

This commit is contained in:
Simon J. Gerraty 2013-10-12 23:37:47 +00:00
parent 7f430eb166
commit 43425d65d2

View File

@ -93,7 +93,7 @@ _libiconv_compat.h: ${.CURDIR}/Makefile
echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h
.endif .endif
.endif .endif
# Define SHARED to indicate whether you want symbolic links to the system # Define SHARED to indicate whether you want symbolic links to the system
# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is
@ -178,6 +178,9 @@ compat:
-f ${.CURDIR}/../etc/mtree/BIND.include.dist \ -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
-p ${DESTDIR}${INCLUDEDIR} > /dev/null -p ${DESTDIR}${INCLUDEDIR} > /dev/null
.endif .endif
.if ${MK_META_MODE} == "yes"
touch ${.TARGET}
.endif
copies: copies:
.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \ .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
@ -257,6 +260,9 @@ copies:
cd ${.CURDIR}/../sys/rpc; \ cd ${.CURDIR}/../sys/rpc; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
${DESTDIR}${INCLUDEDIR}/rpc ${DESTDIR}${INCLUDEDIR}/rpc
.if ${MK_META_MODE} == "yes"
touch ${.TARGET}
.endif
symlinks: symlinks:
@${ECHO} "Setting up symlinks to kernel source tree..." @${ECHO} "Setting up symlinks to kernel source tree..."
@ -369,3 +375,6 @@ symlinks:
ln -fs ../../../sys/rpc/$$h \ ln -fs ../../../sys/rpc/$$h \
${DESTDIR}${INCLUDEDIR}/rpc; \ ${DESTDIR}${INCLUDEDIR}/rpc; \
done done
.if ${MK_META_MODE} == "yes"
touch ${.TARGET}
.endif