lix/perl/Makefile
2020-07-05 21:50:27 +00:00

16 lines
204 B
Makefile

makefiles = local.mk
GLOBAL_CXXFLAGS += -g -Wall -std=c++17
-include Makefile.config
OPTIMIZE = 1
ifeq ($(OPTIMIZE), 1)
GLOBAL_CXXFLAGS += -O3
else
GLOBAL_CXXFLAGS += -O0
endif
include mk/lib.mk