89 lines
2.9 KiB
Makefile
89 lines
2.9 KiB
Makefile
SHELL := /bin/bash
|
|
.DEFAULT_GOAL := help
|
|
.PHONY: coverage setup help build test clean debug release
|
|
|
|
setup: ## Install dependencies for tests and coverage
|
|
@if [ "$(shell uname)" = "Darwin" ]; then \
|
|
brew install gcovr; \
|
|
brew install lcov; \
|
|
fi
|
|
@if [ "$(shell uname)" = "Linux" ]; then \
|
|
pip install gcovr; \
|
|
fi
|
|
|
|
dest ?= ${HOME}/bin
|
|
install: ## Copy binary files to bin folder
|
|
@echo "Destination folder: $(dest)"
|
|
make build
|
|
@echo ">>> Copying files to $(dest)"
|
|
@cp build/src/Platform/b_main $(dest)
|
|
@cp build/src/Platform/b_list $(dest)
|
|
@cp build/src/Platform/b_manage $(dest)
|
|
@cp build/src/Platform/b_best $(dest)
|
|
|
|
dependency: ## Create a dependency graph diagram of the project (build/dependency.png)
|
|
cd build && cmake .. --graphviz=dependency.dot && dot -Tpng dependency.dot -o dependency.png
|
|
|
|
build: ## Build the main and BayesNetSample
|
|
cmake --build build -t b_main -t BayesNetSample -t b_manage -t b_list -t b_best -j 32
|
|
|
|
clean: ## Clean the debug info
|
|
@echo ">>> Cleaning Debug BayesNet...";
|
|
$(call ClearTests)
|
|
@echo ">>> Done";
|
|
|
|
clang-uml: ## Create uml class and sequence diagrams
|
|
clang-uml -p --add-compile-flag -I /usr/lib/gcc/x86_64-redhat-linux/8/include/
|
|
|
|
debug: ## Build a debug version of the project
|
|
@echo ">>> Building Debug BayesNet...";
|
|
@if [ -d ./build ]; then rm -rf ./build; fi
|
|
@mkdir build;
|
|
@cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -D ENABLE_TESTING=ON -D CODE_COVERAGE=ON;
|
|
@echo ">>> Done";
|
|
|
|
release: ## Build a Release version of the project
|
|
@echo ">>> Building Release BayesNet...";
|
|
@if [ -d ./build ]; then rm -rf ./build; fi
|
|
@mkdir build;
|
|
@cmake -S . -B build -D CMAKE_BUILD_TYPE=Release;
|
|
@echo ">>> Done";
|
|
|
|
test: ## Run tests
|
|
@echo ">>> Running tests...";
|
|
$(MAKE) clean
|
|
@cmake --build build --target unit_tests ;
|
|
@if [ -f build/tests/unit_tests ]; then cd build/tests ; ./unit_tests ; fi ;
|
|
@echo ">>> Done";
|
|
|
|
coverage: ## Run tests and generate coverage report (build/index.html)
|
|
@echo ">>> Building tests with coverage...";
|
|
$(MAKE) test
|
|
@gcovr
|
|
@echo ">>> Done";
|
|
|
|
define ClearTests =
|
|
$(eval nfiles=$(find . -name "*.gcda" -print))
|
|
@if [ -f build/tests/unit_tests ]; then rm -f build/tests/unit_tests ; fi ;
|
|
@if test "${nfiles}" != "" ; then \
|
|
find . -name "*.gcda" -print0 | xargs -0 rm 2>/dev/null ;\
|
|
fi ;
|
|
endef
|
|
|
|
help: ## Show help message
|
|
@IFS=$$'\n' ; \
|
|
help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/:/'`); \
|
|
printf "%s\n\n" "Usage: make [task]"; \
|
|
printf "%-20s %s\n" "task" "help" ; \
|
|
printf "%-20s %s\n" "------" "----" ; \
|
|
for help_line in $${help_lines[@]}; do \
|
|
IFS=$$':' ; \
|
|
help_split=($$help_line) ; \
|
|
help_command=`echo $${help_split[0]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
|
|
help_info=`echo $${help_split[2]} | sed -e 's/^ *//' -e 's/ *$$//'` ; \
|
|
printf '\033[36m'; \
|
|
printf "%-20s %s" $$help_command ; \
|
|
printf '\033[0m'; \
|
|
printf "%s\n" $$help_info; \
|
|
done
|