aboutsummaryrefslogblamecommitdiff
path: root/Makefile
blob: fe046c94b7708503c199ae0f7f74c0323cfbc09c (plain) (tree)
1
2
3
4
5
6

                
             
           
                    
             







                                                                                

                                                                                           
 

                                                                                
 
                                                                                
 

                       



                                     





                                       

                                                                                
                                           
 
                  
                                  












                                                     
TEST += bitfield
TEST += option
TEST += timer
TEST += log
TEST += owning_mutex
TEST += latch

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