Files
laba5/Makefile
Wingleszy 52fc63054b
Some checks are pending
Pipeline / ci (push) Waiting to run
ci create + some fixes
2026-05-14 01:39:55 +03:00

13 lines
165 B
Makefile

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