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