Set up literate programming structure

This commit is contained in:
Jon Staab
2026-04-07 09:55:41 -07:00
commit 2d36400ba0
16 changed files with 933 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
tangle:
cargo run -p coracle-tangle -- tangle book/
build: tangle
cargo build --workspace --exclude coracle-tangle
weave: tangle
cargo run -p coracle-tangle -- weave book/
mdbook build target/book-staging/
check: tangle
cargo check --workspace --exclude coracle-tangle
clean:
rm -rf coracle-lib/src/ coracle-net/src/ coracle-signer/src/ coracle-content/src/ coracle-storage/src/
rm -rf target/book/ target/book-staging/
all: build weave