From 3491f50c816cf35e8f5edf3a3b0e47157c797213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pomp=C3=A9ry?= Date: Tue, 17 Sep 2024 17:54:31 +0200 Subject: [PATCH] fix: Makefile. Take 3... --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2ff2bf5..ba59b0e 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,7 @@ build: specs/index.html specs/faq.html ## and now build the rust docs... make gen/target/doc/ileap_extension/index.html - mkdir -p ${RELEASE_DIR}/rustdocs - cp -r gen/target/doc/ ${RELEASE_DIR}/rustdocs/ + cp -r gen/target/doc ${RELEASE_DIR}/rustdocs specs/index.html: specs/index.bs ${DIAGRAMS} bikeshed spec $< $@ @@ -35,7 +34,7 @@ ${MMDC}: npm install @mermaid-js/mermaid-cli gen/target/doc/ileap_extension/index.html: - cd gen && cargo doc --no-deps --document-private-items --all-features --open + cd gen && cargo doc --no-deps --document-private-items --all-features .PHONY: gen/target/doc/ileap_extension/index.html