aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util/romtool/Makefile4
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