mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
14 lines
184 B
Makefile
14 lines
184 B
Makefile
ARCH := $(shell uname -m)
|
|
|
|
CFLAGS := -g3 -Wall
|
|
DEFINES := -DDEBUG
|
|
BUILD := debug
|
|
|
|
ifndef TRACY_NO_ISA_EXTENSIONS
|
|
ifeq ($(ARCH),x86_64)
|
|
CFLAGS += -msse4.1
|
|
endif
|
|
endif
|
|
|
|
include build.mk
|