aboutsummaryrefslogtreecommitdiff
path: root/perl/Makefile
blob: 2d759e6fc48789d0ddb208f42c2b4a8550658e20 (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++20 -I ../src

-include Makefile.config

OPTIMIZE = 1

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

include mk/lib.mk