blob: 9b143543805ba7bd37628114fe8286fae87f0265 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
TEST += bitfield
TEST += option
TEST += timer
TEST += log
TEST += owning_mutex
# -- INTERNALS -----------------------------------------------------------------
BINS = $(TEST:%=build/%)
DEPS = $(TEST:%=build/%.d)
# -- FLAGS ---------------------------------------------------------------------
DEPS_GEN = -MMD
SANITIZER = -fsanitize=address -fsanitize=undefined -fsanitize=leak -fno-omit-frame-pointer
CXXFLAGS = -Og -g -Wall -Wextra -Werror -I. -std=c++14 $(DEPS_GEN) $(SANITIZER)
LDFLAGS = $(SANITIZER)
# -- RULES ---------------------------------------------------------------------
all: lint build $(BINS)
bear:
bear intercept -- $(MAKE) all
bear citnames
run: all
@for BIN in $(BINS); do \
echo "==> run $$BIN"; \
$$BIN; \
done
lint:
clang-format --dry-run -Werror $(shell find -name '*.cc' -o -name '*.h')
clang-tidy test/*.cc -- $(CXXFLAGS)
build/%: build/%.o
$(CXX) -o $@ $< $(LDFLAGS)
build/%.o: test/%.cc
$(CXX) -c -o $@ $< $(CXXFLAGS)
build:
mkdir -p build
clean:
$(RM) -r build
$(RM) compile_commands.json events.json
# Since DEPS files contain rules, include at the end.
-include $(DEPS)
|