Nix/perl/Makefile
2019-11-07 12:18:37 +01:00

16 lines
193 B
Makefile

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