aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/development/c++/Makefile
blob: 1d5172bb51d7432b1e896b2ad3f9e4ab36f8346f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
SRC = concepts-11.cc meta.cc meta2.cc meta4.cc tmpl-pair.cc
BIN = $(SRC:.cc=)

all: $(BIN)

%: %.cc
	$(CXX) -o $* $^ -std=c++17 -g -fsanitize=address -fsanitize=undefined -fsanitize=leak

fmt:
	clang-format -i $(SRC)

clean:
	$(RM) $(BIN)