aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdrian Kummerländer2013-01-05 17:46:21 +0100
committerAdrian Kummerländer2013-01-05 17:46:21 +0100
commit0ab1ad8c67ac5579e10104f53040d962a7f98f17 (patch)
tree257428157cbf53b941ce19147ec59bf79cf4675b /Makefile
parent16e2509100611447887f6050a5eb1c21ac9170c4 (diff)
downloadSimpleParser-0ab1ad8c67ac5579e10104f53040d962a7f98f17.tar
SimpleParser-0ab1ad8c67ac5579e10104f53040d962a7f98f17.tar.gz
SimpleParser-0ab1ad8c67ac5579e10104f53040d962a7f98f17.tar.bz2
SimpleParser-0ab1ad8c67ac5579e10104f53040d962a7f98f17.tar.lz
SimpleParser-0ab1ad8c67ac5579e10104f53040d962a7f98f17.tar.xz
SimpleParser-0ab1ad8c67ac5579e10104f53040d962a7f98f17.tar.zst
SimpleParser-0ab1ad8c67ac5579e10104f53040d962a7f98f17.zip
Fixes for ugly style used in my early C++ days
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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