a.out: hello.o main.o
	g++ hello.o main.o -o a.out

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

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