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

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

clean:
	rm project
	rm *.o

main.o: main.cpp project.h
	g++ -Wall -c main.cpp

functions.o: functions.cpp project.h
	g++ -Wall -c functions.cpp
