summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMario Krehl <mario-krehl@gmx.de>2017-03-02 21:20:51 +0100
committerMario Krehl <mario-krehl@gmx.de>2017-03-02 21:21:22 +0100
commit3e544f1a9eecf47420730f8457a6d44c3b6270c4 (patch)
tree74f95255778112aff5e40362a197dbb1b237015a /README.md
parent019e12b04884d331b56ceddd94d3121c3b729da6 (diff)
Change README.md because of changed Makefile semantics
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 13 insertions, 12 deletions
diff --git a/README.md b/README.md
index f82d9998..06965eb9 100644
--- a/README.md
+++ b/README.md
@@ -50,18 +50,19 @@ might think!
There are several targets for each of the sub-crates in the Makefile:
-| Target | Multi | Purpose | Example |
-| :--- | ----- | :--- | :--- |
-| all | | Build everything, debug mode | `make all` |
-| bin | | Build all binaries, debug mode | `make bin` |
-| 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` |
-| 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` |
+| Target | Multi | Purpose | Example |
+| :--- | ----- | :--- | :--- |
+| all | | Build everything, debug mode | `make all` |
+| bin | | Build all binaries, debug mode | `make bin` |
+| 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` |
+| install | * | Build everything, release mode, install | `make install` |
+| release | * | Build everything, release mode | `make release` |
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.