mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 15:40:27 +08:00
d1fdb5d539
This makes it a teeny bit easier to build and test things.
8 lines
101 B
Makefile
8 lines
101 B
Makefile
default:
|
|
mdbook build
|
|
|
|
test:
|
|
find . -name "*.md" | xargs -I{} rustdoc --test {}
|
|
|
|
all: default test
|