f13dcd6cae
Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
201 B
Makefile
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)
|