You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
237 B
Makefile

.DEFAULT_GOAL := buildCmd
.PHONY: fmt vet buildLib buildCmd test
3 months ago
fmt:
go fmt ./...
vet: fmt
go vet ./...
buildLib: vet
go build -gcflags="-N -l" ./...
buildCmd: buildLib
go build -C cmd/ -o re ./...
test: buildCmd
go test -v ./...