gotest/Makefile
2019-08-25 09:21:40 -05:00

17 lines
268 B
Makefile

BIN_NAME=gotest
PACKAGE_NAME=git.bloy.org/mike/gotest
GIT_DESCRIBE=$(shell git describe --always --long --dirty)
default: all
all: test build
build:
go build -ldflags "-X ${PACKAGE_NAME}/version.gitDescribe=${GIT_DESCRIBE}"
test:
go test ./...
clean:
go clean