Files
modern-cpp-tutorial/code/4/Makefile
Changkun Ou 7776a59e97 book: translation of ch04
Update #12
2019-07-19 19:17:16 +02:00

14 lines
244 B
Makefile

#
# 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