tracy/profiler/build/unix/Makefile
2022-12-20 00:35:43 +01:00

21 lines
292 B
Makefile

ifneq ($(shell uname),Linux)
export LEGACY=1
endif
all: release
debug:
@+make -f debug.mk all
release:
@+make -f release.mk all
clean:
@+make -f build.mk clean
db: clean
@bear -- $(MAKE) -f debug.mk all
@mv -f compile_commands.json ../../../
.PHONY: all clean debug release db