go-shout/Makefile
2026-03-10 15:14:19 -07:00

16 lines
173 B
Makefile

.PHONY: build test unit integration clean
build:
go build -o shout .
test: unit integration
unit:
go test ./...
integration: build
./shout test
clean:
rm -f shout