2
0
mirror of https://github.com/wolfpld/tracy synced 2026-01-19 04:52:09 +00: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

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