diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |