aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: b5d6cf8b4e5c2afc53ebcc42f34ec677854b6213 (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
TEST += bitfield
TEST += option

# -- 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)

all: build $(BINS)

bear:
	bear intercept -- $(MAKE) all
	bear citnames

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)