mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
15 lines
214 B
Makefile
15 lines
214 B
Makefile
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
|