aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b0c9fe9..d37b2bc 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ BIN=pathfind
OBJ=problem.o ui.o main.o
$(BIN): *.hpp $(OBJ)
- g++ -o $@ $(OBJ) -lm -lsfml-system -lsfml-window -lsfml-graphics -O2 -std=c++11
+ g++ -o $@ $(OBJ) -lm -lsfml-system -lsfml-window -lsfml-graphics -O2 -std=c++11 -g
%.o: %.cpp *.hpp
- g++ -c -o $@ $< -std=c++11 -O2 -Wall -Wextra
+ g++ -c -o $@ $< -std=c++11 -O2 -Wall -Wextra -g