15 lines
219 B
Makefile
15 lines
219 B
Makefile
makefiles = local.mk
|
|
|
|
GLOBAL_CXXFLAGS += -std=c++14 -g -Wall -include nix/config.h
|
|
|
|
-include Makefile.config
|
|
|
|
OPTIMIZE = 1
|
|
|
|
ifeq ($(OPTIMIZE), 1)
|
|
GLOBAL_CFLAGS += -O3
|
|
GLOBAL_CXXFLAGS += -O3
|
|
endif
|
|
|
|
include mk/lib.mk
|