see #2: update exercises and maintains of content

This commit is contained in:
Changkun Ou
2019-07-10 11:35:36 +02:00
parent fb91f1584a
commit cc1d3d7cb9
24 changed files with 2562 additions and 2535 deletions

16
exercises/7/Makefile Normal file
View File

@@ -0,0 +1,16 @@
#
# Makefile
#
# exercise solution - chapter 7
# modern cpp tutorial
#
# created by changkun at changkun.de/modern-cpp
#
all: $(patsubst %.cpp, %.out, $(wildcard *.cpp))
%.out: %.cpp Makefile
clang++ $< -o $@ -std=c++2a -pedantic
clean:
rm *.out