see #12: translate ch09

This commit is contained in:
Changkun Ou
2019-07-14 23:10:07 +02:00
parent 3fc59f9bea
commit 9779283735
6 changed files with 189 additions and 24 deletions

7
code/9/Makefile Normal file
View File

@@ -0,0 +1,7 @@
all: $(patsubst %.cpp, %.out, $(wildcard *.cpp))
%.out: %.cpp Makefile
clang++ $< -o $@ -std=c++2a -pedantic
clean:
rm *.out