From d3cc6e960ed3b2e82f0d7ba277dd7513ca9c03be Mon Sep 17 00:00:00 2001 From: Jan Mrna Date: Sat, 20 Sep 2025 17:35:49 +0200 Subject: [PATCH] Modified makefile --- cpp/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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