summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-10 15:10:48 -0600
committermo khan <mo@mokhan.ca>2025-07-10 15:10:48 -0600
commit88d397e9c9a68d597074baa050c104399f192b6c (patch)
tree3a6e45c677c0bf8682c8ab7d8ad934abe89a3d65 /Makefile
parent83261cb208b0214aaf535a5d02a70cc899386a1b (diff)
chore: move binaries to ./bin
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 76b68ed2..83392788 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,9 @@ setup:
# Cargo targets
build:
@cargo build --offline
+ @cp target/debug/authzd bin/authzd
+ @cargo build --bin cli --offline
+ @cp target/debug/cli bin/cli
check:
@cargo check
@@ -23,7 +26,6 @@ test:
@cargo test
run: build
- @cp target/debug/authzd bin/authzd
@minit
clean: