blob: c2c95f255030d8a228da80cd6653e2738f42fc43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
makefiles = local.mk
GLOBAL_CXXFLAGS += -g -Wall -std=c++2a -I ../src
-include Makefile.config
OPTIMIZE = 1
ifeq ($(OPTIMIZE), 1)
GLOBAL_CXXFLAGS += -O3
else
GLOBAL_CXXFLAGS += -O0
endif
include mk/lib.mk
|