all: compile
	g++ *.o -o test

compile:
	g++ -c *.cpp

clean:
	rm *.o test
