diff options
| author | Fuwn <[email protected]> | 2021-05-01 12:08:38 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-01 12:08:38 +0000 |
| commit | e33eedb75fb7d859f4a1263249ec8276b8f67ddb (patch) | |
| tree | f4041f672cc34d3c16819fda5c014817ddbe9eef | |
| parent | refactor(cmds): even more of2m-ifying (diff) | |
| download | whirl-e33eedb75fb7d859f4a1263249ec8276b8f67ddb.tar.xz whirl-e33eedb75fb7d859f4a1263249ec8276b8f67ddb.zip | |
build(make): more helper tasks, mostly for optional checking
| -rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -17,16 +17,18 @@ WORLDS_RUN = gsudo $(WORLDS_PATH) fmt: cargo fmt -check: fmt +check: cargo check # ------------- # | Executors | # ------------- -help: +checkf: fmt check + +help: checkf cargo run -- $(FLAGS) help $(ARGS) -run: check +run: checkf cargo run -- $(FLAGS) run $(ARGS) # Subject to change depending on different PCs, this is just mine. ~Fuwn |