diff --git a/cpp/Makefile b/cpp/Makefile index d6b6651..286c981 100644 --- a/cpp/Makefile +++ b/cpp/Makefile @@ -1,9 +1,9 @@ -all: test zomberman +all: test pathfinding # TODO add extra warnings # TODO linter? -zomberman: src/main.cpp src/array.hpp - g++ -Wall -ggdb3 -lSDL3 -lSDL3_image -std=c++23 -lGLEW -lGL -o zomberman src/main.cpp +pathfinding: src/main.cpp src/array.hpp + g++ -Wall -ggdb3 -lSDL3 -lSDL3_image -std=c++23 -lGLEW -lGL -o pathfinding src/main.cpp test: src/test.cpp src/array.hpp g++ -Wall -Wextra -Wpedantic -ggdb3 -std=c++23 -lgtest -o test src/test.cpp