gotools/Makefile

27 lines
315 B
Makefile
Raw Normal View History

2024-11-20 17:47:02 +00:00
.DEFAULT_GOAL := all
# seems superfluous
#.PHONY: fmt vet build clean
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
mkdir -p bin
go build -o bin ./cmd/...
2024-12-24 23:10:11 +00:00
install:
go install ./...
2024-11-20 17:47:02 +00:00
test: build
go test -count=1 -coverprofile=testout/coverage.out ${TESTFLAGS} ./...
clean:
rm -rf bin
all: build