Author: stepan Date: 2009-04-04 15:05:18 +0200 (Sat, 04 Apr 2009) New Revision: 4063
Modified: trunk/coreboot-v2/util/romtool/Makefile Log: use $(MAKE) instead of hardcoded "make".. (trivial)
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/coreboot-v2/util/romtool/Makefile =================================================================== --- trunk/coreboot-v2/util/romtool/Makefile 2009-04-04 12:52:28 UTC (rev 4062) +++ trunk/coreboot-v2/util/romtool/Makefile 2009-04-04 13:05:18 UTC (rev 4063) @@ -9,7 +9,7 @@ $(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 @@ tags: ctags *.[ch] */*.[ch] clean: - make -C tools/ clean + $(MAKE) -C tools/ clean rm -f *.o romtool