woodpecker/Makefile

19 lines
293 B
Makefile
Raw Normal View History

SHA := $(shell git rev-parse --short HEAD)
VERSION := 0.4.0-alpha
2014-02-07 10:10:01 +00:00
all: build
deps:
go get -t -v ./...
2014-06-04 21:25:38 +00:00
test:
go vet ./...
go test -cover -short ./...
build:
go build -ldflags "-X main.revision $(SHA) -X main.version $(VERSION).$(SHA)"
2014-06-04 21:25:38 +00:00
clean:
find . -name "*.out" -delete
rm -f drone