summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6e70379ee1afc63abce9f557b91793d3342c4e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.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