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
261 B
Makefile

.DEFAULT_GOAL := buildCmd
.PHONY: fmt vet buildLib buildCmd test
fmt:
go fmt ./...
vet: fmt
go vet ./...
buildLib: vet
go build -gcflags="all=-N -l" ./...
buildCmd: buildLib
go build -C kg/ -gcflags="all=-N -l" -o kg ./...
test: buildCmd
go test -v ./...