From 9f387ca2728c6b039ad03649afe7d39554a154d0 Mon Sep 17 00:00:00 2001 From: fredb Date: Sun, 11 Jun 2000 13:01:29 +0000 Subject: [PATCH] Pass ${MAKEFLAGS} to all recursive invocations of ${MAKE}. --- etc/etc.mac68k/Makefile.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/etc/etc.mac68k/Makefile.inc b/etc/etc.mac68k/Makefile.inc index 75840101dd41..4763e0543076 100644 --- a/etc/etc.mac68k/Makefile.inc +++ b/etc/etc.mac68k/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.5 2000/05/31 15:45:55 fredb Exp $ +# $NetBSD: Makefile.inc,v 1.6 2000/06/11 13:01:29 fredb Exp $ # # mac68k-specific release building goo # @@ -15,15 +15,15 @@ INSTALLATION_DIRS+= installation/instkernel snap_md_post: .ifndef UPDATE - cd ${.CURDIR}/../distrib/mac68k/instkernel/ramdisk && ${MAKE} clean + cd ${.CURDIR}/../distrib/mac68k/instkernel/ramdisk && ${MAKE} ${MAKEFLAGS} clean .endif - cd ${.CURDIR}/../distrib/mac68k/instkernel/ramdisk && ${MAKE} + cd ${.CURDIR}/../distrib/mac68k/instkernel/ramdisk && ${MAKE} ${MAKEFLAGS} .ifndef UPDATE - cd ${.CURDIR}/../distrib/mac68k/instkernel/instkernel && ${MAKE} clean + cd ${.CURDIR}/../distrib/mac68k/instkernel/instkernel && ${MAKE} ${MAKEFLAGS} clean .endif .for k in ${BUILD_KERNELS} cd ${.CURDIR}/../distrib/mac68k/instkernel/instkernel && \ - ${MAKE} INSTALL_KERNEL=${k} && ${MAKE} release INSTALL_KERNEL=${k} + ${MAKE} ${MAKEFLAGS} INSTALL_KERNEL=${k} && ${MAKE} ${MAKEFLAGS} release INSTALL_KERNEL=${k} .endfor - cd ${.CURDIR}/../distrib/notes && ${MAKE} && ${MAKE} release + cd ${.CURDIR}/../distrib/notes && ${MAKE} ${MAKEFLAGS} && ${MAKE} ${MAKEFLAGS} release sh ../distrib/sets/makesums -t ${RELEASEDIR}/installation/instkernel