summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 16:40:49 -0600
committermo khan <mo@mokhan.ca>2025-06-18 16:40:49 -0600
commit60fa0c8126936b23f175181820592ab1fd55cd7c (patch)
treef09c9573d4513765a1038c541228d71336f93232 /Makefile
parentf7d1396c5634e14a7aafdd5c8f6e644aca6e5fb0 (diff)
chore: simplify the projectHEADmain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 6e70379..0000000
--- a/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-.PHONY: help
-help:
- @echo "Available targets:"
- @echo " server - Run the gRPC server"
- @echo " test - Run the tests"
-
-.PHONY: clean
-clean:
- @cargo clean
-
-.PHONY: server
-server:
- @cargo run --bin authzd
-
-.PHONY: test
-test:
- @cargo test