.PHONY: all all: helloworld helloworld: helloworld.cpp g++ helloworld.cpp -o helloworld .PHONY: install install: mkdir -p bin mv helloworld bin .PHONY: clean clean: rm -rf bin/