diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bfeeae3 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +.PHONY: help +help: + @echo "Available targets:" + @echo " run - Run the Server" + @echo " test - Run the tests" + +.PHONY: clean +clean: + @cargo clean + +.PHONY: run +run: + @cargo run + +.PHONY: test +test: + @cargo test + |
