diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2008-01-11 10:16:41 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2008-01-11 10:16:41 +0000 |
commit | 1d45b00dbad6f071a859df121c3940a8e740390d (patch) | |
tree | 09f8a46437c751939e0e7697221a9af8e97a8a31 /distrib/mac68k | |
parent | 95dac7edd60246f4cbfef70790e08f46c8031c60 (diff) |
cleanup: make -> ${MAKE} consistenly.
zap extra subshells.
okay miod@
Diffstat (limited to 'distrib/mac68k')
-rw-r--r-- | distrib/mac68k/ramdisk/Makefile | 6 | ||||
-rw-r--r-- | distrib/mac68k/ramdisk/Makefile.inc | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/distrib/mac68k/ramdisk/Makefile b/distrib/mac68k/ramdisk/Makefile index a5acea51c8e..5416f8ac773 100644 --- a/distrib/mac68k/ramdisk/Makefile +++ b/distrib/mac68k/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2007/04/13 17:34:40 millert Exp $ +# $OpenBSD: Makefile,v 1.10 2008/01/11 10:16:40 espie Exp $ TOP= ${.CURDIR}/.. @@ -35,7 +35,7 @@ bsd: .ifndef(NOBUILD) cd ${.CURDIR}/../../../sys/arch/mac68k/conf && config RAMDISK cd ${.CURDIR}/../../../sys/arch/mac68k/compile/RAMDISK && \ - make clean && make depend && make + ${MAKE} clean && ${MAKE} depend && ${MAKE} .endif cp ${.CURDIR}/../../../sys/arch/mac68k/compile/RAMDISK/bsd bsd @@ -73,7 +73,7 @@ ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CBIN}.conf crunchgen -D ${.CURDIR}/../../.. -L ${DESTDIR}/usr/lib ${CBIN}.conf ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c - make -f ${CBIN}.mk all + ${MAKE} -f ${CBIN}.mk all do_files: mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u diff --git a/distrib/mac68k/ramdisk/Makefile.inc b/distrib/mac68k/ramdisk/Makefile.inc index 939720a09a8..e24ed759fab 100644 --- a/distrib/mac68k/ramdisk/Makefile.inc +++ b/distrib/mac68k/ramdisk/Makefile.inc @@ -1,5 +1,5 @@ # -# $OpenBSD: Makefile.inc,v 1.5 2007/06/17 00:28:21 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.6 2008/01/11 10:16:40 espie Exp $ # $NetBSD: Makefile.inc,v 1.1 1995/07/18 04:13:14 briggs Exp $ # @@ -22,13 +22,13 @@ ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CBIN}.conf crunchgen -D ${BSDSRCDIR} -L ${DESTDIR}/usr/lib ${CBIN}.conf ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c - make -f ${CBIN}.mk all + ${MAKE} -f ${CBIN}.mk all #${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF} # crunchgen -D ${BSDSRCDIR} -L ${DESTDIR}/usr/lib ${CRUNCHCONF} #${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c -# make -f ${CBIN}.mk all +# ${MAKE} -f ${CBIN}.mk all do_files: mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u |