forked from LFDT-Lockness/generic-ec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
16 lines (12 loc) · 717 Bytes
/
Makefile
File metadata and controls
16 lines (12 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: docs docs-open
docs:
RUSTDOCFLAGS="--html-in-header katex-header.html --cfg docsrs" cargo +nightly doc --no-deps --all-features --workspace --exclude nostd-example
docs-open:
RUSTDOCFLAGS="--html-in-header katex-header.html --cfg docsrs" cargo +nightly doc --no-deps --all-features --workspace --exclude nostd-example --open
docs-private:
RUSTDOCFLAGS="--html-in-header katex-header.html --cfg docsrs" cargo +nightly doc --no-deps --all-features --workspace --exclude nostd-example --document-private-items
readme:
(cd generic-ec; cargo rdme -r ../README.md)
(cd generic-ec-core; cargo rdme -r README.md)
(cd generic-ec-curves; cargo rdme -r README.md)
(cd generic-ec-zkp; cargo rdme -r README.md)