From b7d47b2a6c00925f6ae9640700fcda0d888b0486 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 18 Jun 2025 14:58:42 -0600 Subject: chore: create a makefile --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 + -- cgit v1.2.3