diff --git a/Makefile b/Makefile index ab34683..167b7ed 100644 --- a/Makefile +++ b/Makefile @@ -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