fix docs makefile (#10016)

This commit is contained in:
Jack May 2020-05-13 09:08:25 -07:00 committed by GitHub
parent e09f517094
commit 1e80044e93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -5,9 +5,10 @@ Install dependencies, build, and test the docs:
```bash
$ brew install coreutils
$ cargo install svgbob_cli
$ brew install mscgen
$ brew install mdbook
$ cargo install svgbob_cli
$ cargo install mdbook-linkcheck
$ cargo install mdbook
$ ./build.sh
```

View File

@ -8,7 +8,6 @@ TARGET=html/index.html
TEST_STAMP=src/tests.ok
all: $(TARGET)
./set-solana-release-tag.sh
svg: $(SVG_IMGS)
@ -16,6 +15,7 @@ test: $(TEST_STAMP)
open: $(TEST_STAMP)
mdbook build --open
./set-solana-release-tag.sh
watch: $(SVG_IMGS)
mdbook watch
@ -44,6 +44,7 @@ $(TEST_STAMP): $(TARGET)
$(TARGET): $(SVG_IMGS) $(MD_SRCS)
mdbook build
./set-solana-release-tag.sh
clean:
rm -f $(SVG_IMGS) src/tests.ok