rust-book-cn/Makefile
Steve Klabnik d1fdb5d539 Add a Makefile
This makes it a teeny bit easier to build and test things.
2015-12-14 12:12:04 -05:00

8 lines
101 B
Makefile

default:
mdbook build
test:
find . -name "*.md" | xargs -I{} rustdoc --test {}
all: default test