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:
committed by
Stefan Reinauer
parent
38ee631aef
commit
d63e0d041e
@@ -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}
|
||||
|
Reference in New Issue
Block a user