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.
|
.DEFAULT_GOAL := buildCmd
|
|
.PHONY: fmt vet buildLib buildCmd test
|
|
|
|
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 ./...
|