From 0ab1ad8c67ac5579e10104f53040d962a7f98f17 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Sat, 5 Jan 2013 17:46:21 +0100 Subject: Fixes for ugly style used in my early C++ days --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ac857b2..bfc1768 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,9 @@ TEST_FILES = test.cpp all: parser test parser: $(PROG_FILES) $(LIB_FILES) - g++ -O2 -g -o bin/parser $(PROG_FILES) $(LIB_FILES) + g++ -std=c++11 -g -o bin/parser $(PROG_FILES) $(LIB_FILES) test: $(LIB_FILES) $(TEST_FILES) - g++ -o bin/test -lgtest $(LIB_FILES) $(TEST_FILES) + g++ -std=c++11 -O3 -o bin/test -lgtest $(LIB_FILES) $(TEST_FILES) ./bin/test -- cgit v1.2.3