tracy/library/unix/debug.mk

14 lines
184 B
Makefile
Raw Normal View History

2020-01-25 16:08:33 +00:00
ARCH := $(shell uname -m)
CFLAGS := -g3 -Wall
DEFINES := -DDEBUG
BUILD := debug
ifndef TRACY_NO_ISA_EXTENSIONS
2020-01-25 16:08:33 +00:00
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
endif
2020-01-25 16:08:33 +00:00
include build.mk