mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
15 lines
220 B
Makefile
15 lines
220 B
Makefile
CFLAGS := -O3 -g
|
|
ifndef TRACY_NO_LTO
|
|
CFLAGS += -flto
|
|
endif
|
|
DEFINES := -DNDEBUG
|
|
BUILD := release-with-debug
|
|
|
|
include ../../../common/unix-debug.mk
|
|
|
|
ifeq ($(LEGACY),1)
|
|
include legacy.mk
|
|
else
|
|
include build.mk
|
|
endif
|