fix makefile config
All checks were successful
Pipeline / ci (push) Successful in 7s

This commit is contained in:
Wingleszy
2026-05-14 02:20:34 +03:00
parent b37ecb493e
commit 15a437f333

View File

@@ -3,7 +3,7 @@ CC = g++
all: main
main: project_cpp/main.cpp tests/tests.cpp
$(CC) -o main
$(CC) project_cpp/main.cpp -o main
test: tests/tests.cpp
$(CC) tests/tests.cpp -o test