MAKEVERBOSE support

This commit is contained in:
lukem 2003-10-18 16:33:58 +00:00
parent 4e9f921204
commit 2c30246862
3 changed files with 13 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.70 2003/07/25 16:26:51 mrg Exp $
# $NetBSD: Makefile,v 1.71 2003/10/18 16:33:58 lukem Exp $
.include <bsd.own.mk>
@ -84,6 +84,7 @@ realall realdepend:
@echo "*** PREVIOUSTOOLDIR '${PREVIOUSTOOLDIR}'"
@echo "*** != TOOLDIR '${TOOLDIR}'"
@echo "*** Cleaning mis-matched tools"
${_MKCMD}\
rm -f PREVIOUSTOOLDIR
${MAKE} cleandir
.endif
@ -136,4 +137,5 @@ _prev:= ${d}
.endfor
cleandir:
${_MKCMD}\
rm -f ${CLEANFILES}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.gnuhost,v 1.21 2003/10/10 21:49:59 dbj Exp $
# $NetBSD: Makefile.gnuhost,v 1.22 2003/10/18 16:33:58 lukem Exp $
#
# Rules used when building a GNU host package. Expects MODULE to be set.
#
@ -112,6 +112,7 @@ realinstall: .install_done
clean: clean.gnu
clean.gnu:
-rm -r -f .*_done build
${_MKCMD}\
rm -r -f .*_done build
.include <bsd.hostprog.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.host,v 1.19 2003/03/13 05:16:10 thorpej Exp $
# $NetBSD: Makefile.host,v 1.20 2003/10/18 16:33:58 lukem Exp $
NOLINT= # defined
NOMAN= # defined
@ -52,7 +52,10 @@ SRCS+= ${HOST_SRCS}
realinstall: install.host install.files
install.host: ${HOST_BINDIR}/${HOSTPROGNAME}
${HOST_BINDIR}/${HOSTPROGNAME}:: ${HOSTPROG}
${_MKMSG} "install ${.TARGET}"
${_MKCMD}\
mkdir -p ${HOST_BINDIR}
${_MKCMD}\
${HOST_INSTALL_FILE} -m ${BINMODE} ${HOSTPROG}${HOSTEXEEXT} ${.TARGET}
.if !defined(UPDATE)
@ -63,7 +66,10 @@ install.files:
.for F in ${HOSTFILES}
install.files: ${HOST_FILESDIR}/${F}
${HOST_FILESDIR}/${F}: ${F}
${_MKMSG} "install ${.TARGET}"
${_MKCMD}\
mkdir -p ${HOST_FILESDIR}
${_MKCMD}\
${HOST_INSTALL_FILE} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}
.if !defined(UPDATE)