1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Properly call make from within makefiles.

This commit is contained in:
Bartosz Taudul
2023-05-23 22:42:53 +02:00
parent 6b587e61de
commit eca841dfe3
7 changed files with 21 additions and 21 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
all: release
debug:
@+make -f debug.mk all
@$(MAKE) -f debug.mk all
release:
@+make -f release.mk all
@$(MAKE) -f release.mk all
clean:
@+make -f build.mk clean
@$(MAKE) -f build.mk clean
db: clean
@bear -- $(MAKE) -f debug.mk all