From 81b5c477f64e466c8d386a4f94c3fd9464994dd8 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 12 Jul 2013 13:17:12 +0100 Subject: [PATCH] Compile with gnu++11 so that cygwin is happy, and remove unneeded -lmenu --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index e35dbf8e..c3a339b6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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)