aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-12-18 02:22:38 -0500
committerJesse Luehrs <doy@tozt.net>2019-12-18 02:22:38 -0500
commit9217c907dd2d0862551f652aa02ca186b7c637c0 (patch)
treebce19ef6d8dc9cd19cb33341628b6958657c91e5
parentc7312e513e8d9696fea66b198e3526bc0d9f6325 (diff)
downloadteleterm-9217c907dd2d0862551f652aa02ca186b7c637c0.tar.gz
teleterm-9217c907dd2d0862551f652aa02ca186b7c637c0.zip
add a few more makefile targets
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index df28227..0b7e432 100644
--- a/Makefile
+++ b/Makefile
@@ -20,6 +20,14 @@ test:
@cargo test
.PHONY: test
+check:
+ @cargo check --all-targets
+.PHONY: check
+
+doc:
+ @cargo doc --workspace
+.PHONY: doc
+
$(SUBCOMMANDS):
@cargo run $@
.PHONY: $(SUBCOMMANDS)