Compile with gnu++11 so that cygwin is happy, and remove unneeded -lmenu

This commit is contained in:
Maxime Coste 2013-07-12 13:17:12 +01:00
parent fcb3594e4a
commit 81b5c477f6

View File

@ -2,8 +2,8 @@ sources := $(wildcard *.cc)
objects := $(addprefix ., $(sources:.cc=.o))
deps := $(addprefix ., $(sources:.cc=.d))
CXXFLAGS += -std=c++11 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
LIBS += -lmenu -lncursesw -lboost_regex
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
LIBS += -lncursesw -lboost_regex
debug ?= yes
ifeq ($(debug),yes)