From 15a437f3339c2ba2caeac837c84691cec5353031 Mon Sep 17 00:00:00 2001 From: Wingleszy Date: Thu, 14 May 2026 02:20:34 +0300 Subject: [PATCH] fix makefile config --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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