Welcome to mirror list, hosted at ThFree Co, Russian Federation.

release.mk « unix « library - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 030063e3b0c76f12bb83b1eabc05644b533ba80a (plain)
1
2
3
4
5
6
7
8
9
10
11
ARCH := $(shell uname -m)

CFLAGS := -O3 -s -fomit-frame-pointer
DEFINES := -DNDEBUG
BUILD := release

ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif

include build.mk