13 lines
186 B
Makefile
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
|