all: hello clean: -rm main.o hello.exe hello hello: main.o g++ -g -o hello main.o main.o: main.cpp g++ -c -g main.cpp