slacksend/Makefile

20 lines
210 B
Makefile

App=skacksend
.PHONY: fmt vet test build run check
fmt:
go fmt ./...
vet:
go vet ./...
test:
go test -v ./...
build:
go build -o bin/$(App) ./cmd/$(App)
run:
go run ./cmd/$(App)
check: fmt vet test