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
This commit is contained in:
Stefan Reinauer 2009-04-04 13:05:18 +00:00 committed by Stefan Reinauer
parent 2ddacb60d4
commit 962242ad2d
1 changed files with 2 additions and 2 deletions

View File

@ -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