mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 18:51:46 +00:00
d68297ba45
This tool will load a trace saved in previous version of tracy and save an up-to-date version of the file.
12 lines
147 B
Makefile
12 lines
147 B
Makefile
ARCH := $(shell uname -m)
|
|
|
|
CFLAGS := -g3 -Wall
|
|
DEFINES := -DDEBUG
|
|
BUILD := debug
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
CFLAGS += -msse4.1
|
|
endif
|
|
|
|
include build.mk
|