From 0bc8eaa46c4661649d7e38447e7a05ae6f50c225 Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Thu, 27 Sep 2018 23:33:48 -0400 Subject: [PATCH] Enabled O3 optimizations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f1a98fe..f42be2f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -GPP = g++ -Wall -std=c++17 +GPP = g++ -Wall -std=c++17 -O3 sloth: src/main.cpp src/parser/lex.yy.o src/parser/parser.tab.o src/variables/environment.o src/variables/variable.o src/variables/value.o src/operations/node.o src/operations/operators.o src/string.o src/shell.o $(GPP) src/main.cpp src/parser/lex.yy.o src/parser/parser.tab.o src/variables/environment.o src/variables/variable.o src/variables/value.o src/operations/node.o src/operations/operators.o src/string.o src/shell.o -ledit -o sloth