Generate book images via Make

This commit is contained in:
Greg Fitzgerald
2018-11-26 09:46:50 -07:00
committed by Grimes
parent 88e270723f
commit 2200a31331
11 changed files with 40 additions and 1851 deletions

View File

@@ -73,19 +73,19 @@ cargo install mdbook
Run any Rust tests in the markdown:
```bash
mdbook test book
make -C book test
```
Render markdown as HTML:
```bash
mdbook build book
make -C book build
```
Render and view the book:
```bash
mdbook build --open book
make -C book open
```