Add build instructions

This commit is contained in:
Markus Unterwaditzer 2015-03-19 00:45:30 +01:00
parent 4017524157
commit 7ca46bc708

View file

@ -122,3 +122,19 @@ Add `extern crate clap;` to your crate root.
## More Information ## More Information
You can find complete documentation on the [github-pages site](http://kbknapp.github.io/clap-rs/docs/clap/index.html) for this project. You can find complete documentation on the [github-pages site](http://kbknapp.github.io/clap-rs/docs/clap/index.html) for this project.
## How to build
### Running the tests
```
cargo test
```
### Building the documentation
Run this instead of `cargo doc` to generate the proper module docstring:
```
make doc
```