Change README.md because of changed Makefile semantics

This commit is contained in:
Mario Krehl 2017-03-02 21:20:51 +01:00
parent 019e12b048
commit 3e544f1a9e
1 changed files with 13 additions and 12 deletions

View File

@ -57,11 +57,12 @@ There are several targets for each of the sub-crates in the Makefile:
| lib | | Build all libraries, debug mode | `make lib` |
| lib-test | | Test all libraries | `make lib-test` |
| imag-bin | | Build only the `imag` binary, debug mode | `make imag-bin` |
| clean | | Remove build artifacts | `make clean` |
| update | | Run `cargo update` | `make update` |
| check-outdated | | Run `cargo outdated` | `make check-outdated`|
| check | * | Run `cargo check` | `make check` |
| clean | * | Remove build artifacts | `make clean` |
| install | * | Build everything, release mode, install | `make install` |
| release | * | Build everything, release mode | `make release` |
| update | * | Run `cargo update` | `make update` |
The `Multi` targets are callable for each sub-crate. For example you can call
`make imag-store-check` to run `cargo check` on the `imag-store` crate.