greetme2: hello.o
	g++ -o greetme2 hello.o

hello.o: hello.cpp
	g++ -c hello.cpp

clean :
	rm -f *.o core

