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/ramdisk | |
parent | 95dac7edd60246f4cbfef70790e08f46c8031c60 (diff) |
cleanup: make -> ${MAKE} consistenly.
zap extra subshells.
okay miod@
Diffstat (limited to 'distrib/ramdisk')
-rw-r--r-- | distrib/ramdisk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/ramdisk/Makefile b/distrib/ramdisk/Makefile index 256eba72e93..9a08c877ccd 100644 --- a/distrib/ramdisk/Makefile +++ b/distrib/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.31 2007/06/17 00:28:21 deraadt Exp $ +# $OpenBSD: Makefile,v 1.32 2008/01/11 10:16:40 espie Exp $ REV= ${OSrev} @@ -85,7 +85,7 @@ ${FLOPPY}: bsd.gz ${BOOT} ${BOOTXX} bsd: cd ${.CURDIR}/../../sys/arch/${MACHINE}/conf && config ${KERNEL} cd ${.CURDIR}/../../sys/arch/${MACHINE}/compile/${KERNEL} && \ - make depend && make clean && COPTS=-Os make + ${MAKE} depend && ${MAKE} clean && COPTS=-Os ${MAKE} cp ${.CURDIR}/../../sys/arch/${MACHINE}/compile/${KERNEL}/bsd bsd bsd.rd: bsd ${IMAGE} ${RDSETROOT} @@ -125,7 +125,7 @@ ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CBIN}.conf ${CBIN}.conf ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c - make -f ${CBIN}.mk all + ${MAKE} -f ${CBIN}.mk all clean cleandir: /bin/rm -f *.core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache \ |