mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 20:54:39 +03:00
16 lines
250 B
Makefile
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
|