Files
laba5/Makefile
Wingleszy 15a437f333
All checks were successful
Pipeline / ci (push) Successful in 7s
fix makefile config
2026-05-14 02:20:34 +03:00

13 lines
186 B
Makefile

CC = g++
all: main
main: project_cpp/main.cpp tests/tests.cpp
$(CC) project_cpp/main.cpp -o main
test: tests/tests.cpp
$(CC) tests/tests.cpp -o test
./test
clean:
rm -f main test