mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 18:51:46 +00:00
13 lines
317 B
Makefile
13 lines
317 B
Makefile
CFLAGS +=
|
|
CXXFLAGS := $(CFLAGS) -std=gnu++17
|
|
DEFINES += -DTRACY_NO_STATISTICS
|
|
INCLUDES := $(shell pkg-config --cflags capstone)
|
|
LIBS := $(shell pkg-config --libs capstone) -lpthread
|
|
PROJECT := update
|
|
IMAGE := $(PROJECT)-$(BUILD)
|
|
|
|
FILTER :=
|
|
include ../../../common/src-from-vcxproj.mk
|
|
|
|
include ../../../common/unix.mk
|