2014-03-01 20:46:10 -07:00
|
|
|
SHA := $(shell git rev-parse --short HEAD)
|
2015-04-07 01:20:55 -07:00
|
|
|
VERSION := 0.4.0-alpha
|
2014-02-07 03:10:01 -07:00
|
|
|
|
2015-04-25 16:16:56 -07:00
|
|
|
all: concat bindata build
|
2014-04-10 17:44:26 +00:00
|
|
|
|
|
|
|
deps:
|
2014-10-10 04:46:41 -04:00
|
|
|
go get -t -v ./...
|
2014-04-10 17:44:26 +00:00
|
|
|
|
2014-06-04 14:25:38 -07:00
|
|
|
test:
|
|
|
|
go vet ./...
|
|
|
|
go test -cover -short ./...
|
2014-04-10 17:44:26 +00:00
|
|
|
|
2014-07-13 19:41:08 -07:00
|
|
|
build:
|
2015-04-07 01:20:55 -07:00
|
|
|
go build -ldflags "-X main.revision $(SHA) -X main.version $(VERSION).$(SHA)"
|
2014-06-21 14:22:38 -07:00
|
|
|
|
2014-06-04 14:25:38 -07:00
|
|
|
clean:
|
2014-07-13 19:41:08 -07:00
|
|
|
find . -name "*.out" -delete
|
2015-04-07 01:20:55 -07:00
|
|
|
rm -f drone
|
2015-04-25 16:16:56 -07:00
|
|
|
rm -f bindata.go
|
|
|
|
|
|
|
|
concat:
|
|
|
|
cat server/static/scripts/drone.js \
|
|
|
|
server/static/scripts/services/*.js \
|
|
|
|
server/static/scripts/filters/*.js \
|
|
|
|
server/static/scripts/controllers/*.js \
|
2015-04-25 21:27:24 -07:00
|
|
|
server/static/scripts/term.js > server/static/scripts/drone.min.js
|
2015-04-25 16:16:56 -07:00
|
|
|
|
|
|
|
bindata_debug:
|
|
|
|
go-bindata --debug server/static/...
|
|
|
|
|
|
|
|
bindata:
|
|
|
|
go-bindata server/static/...
|