1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-30 04:43:53 +00:00
2017-09-15 22:45:23 +02:00

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