.PHONY: all
all: hellopoem

hellopoem: hellopoem.cpp
	g++ -g -o hellopoem hellopoem.cpp

.PHONY: clean
clean:
	rm -f hellopoem hellopoem.o

