TARGETS = 00-helloworld 01-helloworld 02-iomanip 03-stdin 04-concat all: $(TARGETS) ${TARGETS}: % : %.cc g++ -std=c++11 -Wall -g $^ -o $@ clean: rm -f *.o *~ $(TARGETS)