From 665472ccf6fdb6ee0b98602d76ab06020ed667cf Mon Sep 17 00:00:00 2001 From: Leo Lara Date: Sun, 19 Nov 2023 02:28:13 +0700 Subject: [PATCH] Add book to Makefile (#179) --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 828e6c66..e3766074 100644 --- a/Makefile +++ b/Makefile @@ -27,5 +27,7 @@ test: # generate lcov coverage report ./target/test_coverage/grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/test_coverage/tests.lcov +book: + jupyter-book build book -.PHONY: precommit build test +.PHONY: precommit build test book