diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-04-04 13:05:18 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-04-04 13:05:18 +0000 |
commit | 962242ad2d33fd81a87067dadb58652d88edaf52 (patch) | |
tree | 8609d71f5f6f4ec425e5745857445982a8ddcc11 | |
parent | 2ddacb60d442a725983166eadc94d10e65fb2022 (diff) |
use $(MAKE) instead of hardcoded "make".. (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4063 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | util/romtool/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/romtool/Makefile b/util/romtool/Makefile index 239d57535c..44982674f3 100644 --- a/util/romtool/Makefile +++ b/util/romtool/Makefile @@ -9,7 +9,7 @@ romtool: $(OBJ) $(CC) -o $@ $(OBJ) tools/rom-mkpayload tools/rom-mkstage: - make -C tools/ $(patsubst tools/%, %, $@) + $(MAKE) -C tools/ $(patsubst tools/%, %, $@) %.o: %.c $(CC) -g -Wall -Werror -c -o $@ $< @@ -23,5 +23,5 @@ install: romtool tools/rom-mkpayload tools/rom-mkstage tags: ctags *.[ch] */*.[ch] clean: - make -C tools/ clean + $(MAKE) -C tools/ clean rm -f *.o romtool |