From 78f0c9ed3883cdb1cd056d9fe365cdb28bd67fbc Mon Sep 17 00:00:00 2001 From: Quentin Date: Tue, 28 Sep 2021 10:13:14 +0200 Subject: [PATCH] Add a doc target to the Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 1098d712..7242f1d6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,10 @@ +.PHONY: doc + all: clear; cargo build +doc: + cd doc/book; mdbook build + release: RUSTFLAGS="-C link-arg=-fuse-ld=lld -C target-cpu=x86-64 -C target-feature=+sse2" cargo build --release --no-default-features