Changes Makefile generation so that recursive "make" calls read

"$(MAKE)" instead, as GNU make (or "gmake") is currently necessary to build.

Signed-off-by: Pierre Pronchery <khorben@defora.org>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3363 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Pierre Pronchery
2008-06-08 23:05:24 +00:00
committed by Stefan Reinauer
parent 38ee631aef
commit d63e0d041e
2 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ loader.o: loader.s
#-------------------------------------------------
bios:
( cd ${BOCHS_B} ; make )
( cd ${BOCHS_B} ; $(MAKE) )
sync
#-------------------------------------------------
@@ -101,7 +101,7 @@ install:
clean:
rm -rf *.o ${PAYLOAD}
(cd ${BOCHS_B} ; make clean )
(cd ${BOCHS_B} ; $(MAKE) clean )
distclean: clean
rm -rf ${BOCHS_C}