mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 18:51:46 +00:00
11 lines
132 B
Makefile
11 lines
132 B
Makefile
|
ARCH := $(shell uname -m)
|
||
|
|
||
|
CFLAGS := -g3 -Wall
|
||
|
DEFINES := -DDEBUG
|
||
|
|
||
|
ifeq ($(ARCH),x86_64)
|
||
|
CFLAGS += -msse4.1
|
||
|
endif
|
||
|
|
||
|
include build.mk
|