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

18 lines
271 B
Makefile

ifeq ($(shell uname -o),Haiku)
CFLAGS := -gdwarf-3 -Wall
LDFLAGS := -gdwarf-3
else
CFLAGS := -g3 -Wall
LDFLAGS := -g3
endif
DEFINES := -DDEBUG
BUILD := debug
include ../../../common/unix-debug.mk
ifeq ($(LEGACY),1)
include legacy.mk
else
include build.mk
endif