Files
modern-cpp-tutorial/exercises/7/Makefile
2019-07-10 11:36:44 +02:00

16 lines
250 B
Makefile

#
# Makefile
#
# exercise solution - chapter 7
# modern cpp tutorial
#
# created by changkun at changkun.de/modern-cpp
#
all: $(patsubst %.cpp, %.out, $(wildcard *.cpp))
%.out: %.cpp Makefile
clang++ $< -o $@ -std=c++2a -pedantic
clean:
rm *.out