From ac0f77c26092bc3daf73421e1bbd5efeec799ef8 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Thu, 8 Dec 2022 17:20:49 +0100 Subject: [PATCH] Add recipe for building documentation --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0718596..c486d47 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -all: doc/architecture.pdf server +all: server documentation + +documentation: doc/architecture.pdf + @cargo doc --document-private-items --no-deps server: src/main.rs @cargo build