mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
15 lines
197 B
Makefile
15 lines
197 B
Makefile
|
makefiles = local.mk
|
||
|
|
||
|
GLOBAL_CXXFLAGS += -std=c++11 -g -Wall
|
||
|
|
||
|
-include Makefile.config
|
||
|
|
||
|
OPTIMIZE = 1
|
||
|
|
||
|
ifeq ($(OPTIMIZE), 1)
|
||
|
GLOBAL_CFLAGS += -O3
|
||
|
GLOBAL_CXXFLAGS += -O3
|
||
|
endif
|
||
|
|
||
|
include mk/lib.mk
|