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/vax/common | |
parent | 95dac7edd60246f4cbfef70790e08f46c8031c60 (diff) |
cleanup: make -> ${MAKE} consistenly.
zap extra subshells.
okay miod@
Diffstat (limited to 'distrib/vax/common')
-rw-r--r-- | distrib/vax/common/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/vax/common/Makefile.inc b/distrib/vax/common/Makefile.inc index 82b8a69a5ed..d1df15e24de 100644 --- a/distrib/vax/common/Makefile.inc +++ b/distrib/vax/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.4 2007/04/13 17:34:40 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2008/01/11 10:16:40 espie Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -47,7 +47,7 @@ bootroot: xxboot boot vnconfig -u ${VND} xxboot boot: - (cd /usr/src/sys/arch/vax/boot;make) + cd /usr/src/sys/arch/vax/boot;${MAKE} cp /usr/src/sys/arch/vax/boot/xxboot/xxboot . cp /usr/src/sys/arch/vax/boot/boot/boot . @@ -64,7 +64,7 @@ ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF} crunchgen -D ${TOP}/../../ -L ${DESTDIR}/usr/lib ${.ALLSRC} ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c - make -f ${CBIN}.mk + ${MAKE} -f ${CBIN}.mk clean cleandir: /bin/rm -f core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache *.o *.lo *.c |