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