mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
12 lines
147 B
Makefile
12 lines
147 B
Makefile
ARCH := $(shell uname -m)
|
|
|
|
CFLAGS := -O3 -s
|
|
DEFINES := -DNDEBUG
|
|
BUILD := release
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
CFLAGS += -msse4.1
|
|
endif
|
|
|
|
include build.mk
|