CPPC := g++ ALL_TARGETS = bin/hello-world bin/%: src/%.cpp $(CPPC) $^ -o $@ all: $(ALL_TARGETS) clean: rm -vf ./bin/* .PHONY: all clean