summaryrefslogtreecommitdiff
path: root/util/ADLO
diff options
context:
space:
mode:
authorPierre Pronchery <khorben@defora.org>2008-06-08 23:05:24 +0000
committerStefan Reinauer <stepan@openbios.org>2008-06-08 23:05:24 +0000
commitd63e0d041e54da63060f1c067f3a9e6902a079de (patch)
treec7a2aa1daa831af796805c7fd0cbb5a8e89ad17e /util/ADLO
parent38ee631aeff349c77943a6a41ef3df13e75f0f2b (diff)
downloadcoreboot-d63e0d041e54da63060f1c067f3a9e6902a079de.tar.xz
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
Diffstat (limited to 'util/ADLO')
-rw-r--r--util/ADLO/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/ADLO/Makefile b/util/ADLO/Makefile
index 1533cf5601..6af8c7409e 100644
--- a/util/ADLO/Makefile
+++ b/util/ADLO/Makefile
@@ -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}