mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 04:34:40 +03:00
7 lines
150 B
Makefile
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
|