1 2 3 4 5 6 7 8 9 10 11 12 13 14
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