mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 18:51:46 +00:00
12 lines
167 B
Makefile
12 lines
167 B
Makefile
CFLAGS := -g3 -Wall
|
|
DEFINES := -DDEBUG
|
|
BUILD := debug
|
|
|
|
include ../../../common/unix-debug.mk
|
|
|
|
ifeq ($(LEGACY),1)
|
|
include legacy.mk
|
|
else
|
|
include build.mk
|
|
endif
|