Files
modern-cpp-tutorial/code/10/Makefile
2019-07-11 12:34:14 +02:00

7 lines
150 B
Makefile

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