.PHONY: all
all: hellorr

hellorr: hellorr.cpp
	g++ -ggdb -o hellorr hellorr.cpp

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

