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

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

CFLAGS := -g3 -Wall
DEFINES := -DDEBUG
BUILD := debug

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

include build.mk