aboutsummaryrefslogtreecommitdiff
path: root/perl/Makefile
blob: 708f868822b145d4a98f8a18378c18d116e676f4 (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++17 -I ../src

-include Makefile.config

OPTIMIZE = 1

ifeq ($(OPTIMIZE), 1)
  GLOBAL_CXXFLAGS += -O3
else
  GLOBAL_CXXFLAGS += -O0
endif

include mk/lib.mk