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

18 lines
346 B
Makefile

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