Files
agent-dashboard/Makefile
T
2026-05-26 11:17:03 +08:00

12 lines
201 B
Makefile

.PHONY: build test install
BINARY := agent-notify
build:
go build -o bin/$(BINARY) ./cmd/agent-notify
test:
go test ./...
install: build
install -m 755 bin/$(BINARY) $(HOME)/.local/bin/$(BINARY)