see #2: code updates

This commit is contained in:
Changkun Ou
2019-07-16 09:26:31 +02:00
parent 1068cefb1f
commit 54ad935875
41 changed files with 61 additions and 3 deletions

View File

@@ -1,7 +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 -Xclang -fconcepts-ts -pedantic
clang++ $< -o $@ -std=c++2a -pedantic
clean:
rm *.out