release:
	g++ -Wall -o project functions.cpp main.cpp

debug:
	g++ -Wall -DDEBUG -o project functions.cpp main.cpp

clean:
	rm project
