Complete AODELd

This commit is contained in:
2023-08-06 11:31:44 +02:00
parent 9e94f4e140
commit 14ea51648a
10 changed files with 92 additions and 25 deletions

View File

@@ -17,6 +17,11 @@ dependency: ## Create a dependency graph diagram of the project (build/dependenc
build: ## Build the main and BayesNetSample
cmake --build build -t main -t BayesNetSample -j 32
clean: ## Clean the debug info
@echo ">>> Cleaning Debug BayesNet ...";
find . -name "*.gcda" -print0 | xargs -0 rm
@echo ">>> Done";
debug: ## Build a debug version of the project
@echo ">>> Building Debug BayesNet ...";
@if [ -d ./build ]; then rm -rf ./build; fi