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