see #12: translate ch06

This commit is contained in:
Changkun Ou
2019-07-16 09:30:56 +02:00
parent 9180aab4e6
commit 507f8b9673
17 changed files with 294 additions and 36 deletions

14
code/6/Makefile Normal file
View File

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