aboutsummaryrefslogtreecommitdiff
path: root/perl/Makefile
blob: 259ed7dc3f12c8295e885e1614d6190229aef2bb (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

-include Makefile.config

OPTIMIZE = 1

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

include mk/lib.mk