summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 14:58:42 -0600
committermo khan <mo@mokhan.ca>2025-06-18 14:58:42 -0600
commitb7d47b2a6c00925f6ae9640700fcda0d888b0486 (patch)
tree014f5324a2eff6f663dd94387f25a793e44abe8b /Makefile
parent729ba20b58180358df14de140007d088ff9329a8 (diff)
chore: create a makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
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
+