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.
kleingrep/Makefile

14 lines
262 B
Makefile

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