summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2019-09-23 03:24:10 +0300
committerOxore <oxore@protonmail.com>2019-09-23 03:24:10 +0300
commit04476fd02d79028d31b7a340bef7e42de3992497 (patch)
treedc4894dd83ddbae239e8803c17cb9fb756ec5731 /Makefile
parent95a088365fc78d4a9f6625ecfdf324dbb5614dcc (diff)
Enable verbose on CI, change make to $(MAKE) in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 08e39ab..9056cc5 100644
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,7 @@ endif
.PHONY: pg
pg:
- make -f pg.mk $@ PREFIX=$(PREFIX)
+ $(MAKE) -f pg.mk $@ PREFIX=$(PREFIX)
$(TARGET_TETRIS): $(OBJECTS) $(TARGET)/$(TARGET_TETRIS).c.o $(LIBF8)/libf8.a \
$(CJSON)/cJSON.o
@@ -85,7 +85,7 @@ $(OBJECTS): | $(BUILD)/ $(TARGET)/
$(Q) mkdir -p $@
$(LIBF8)/libf8.a: $(LIBF8)
- make -C $< NOTEST=1
+ $(MAKE) -C $< NOTEST=1
$(CJSON)/cJSON.c.o: $(CJSON)/cJSON.c
$(QQ) echo " CC $@"
@@ -106,12 +106,12 @@ clean:
$(TARGET_TETRIS) $(TARGET_TEST) \
$(TARGET)/$(TARGET_TETRIS).c.o $(TARGET)/$(TARGET_TETRIS).c.d \
$(TARGET)/$(TARGET_TEST).c.o $(TARGET)/$(TARGET_TEST).c.d
- make -f pg.mk $@
+ $(MAKE) -f pg.mk $@
mrproper: clean
$(Q) $(RM) -rfv $(BUILD) \
$(MUNIT)/*.d $(MUNIT)/*.o \
$(CJSON)/*.d $(CJSON)/*.o
- make -C $(LIBF8) clean
+ $(MAKE) -C $(LIBF8) clean
.PHONY: all clean mrproper