forked from CiscoCloud/marathon-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
46 lines (38 loc) · 1000 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
TEST?=./...
NAME = $(shell awk -F\" '/^const Name/ { print $$2 }' main.go)
VERSION = $(shell awk -F\" '/^const Version/ { print $$2 }' main.go)
DEPS = $(shell go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
all: deps build
deps:
go get -d -v ./...
echo $(DEPS) | xargs -n1 go get -d
updatedeps:
go get -u -v ./...
echo $(DEPS) | xargs -n1 go get -d
build: deps
@mkdir -p bin/
go build -o bin/$(NAME)
test: deps
go test $(TEST) $(TESTARGS)
go vet $(TEST)
xcompile: deps test
# go get github.com/mitchellh/gox
@rm -rf build/
@mkdir -p build
gox \
-os="darwin" \
-os="dragonfly" \
-os="freebsd" \
-os="linux" \
-os="openbsd" \
-os="solaris" \
-os="windows" \
-output="build/{{.Dir}}_$(VERSION)_{{.OS}}_{{.Arch}}/$(NAME)"
package: xcompile
$(eval FILES := $(shell ls build))
@mkdir -p build/tgz
for f in $(FILES); do \
(cd $(shell pwd)/build && tar -zcvf tgz/$$f.tar.gz $$f); \
echo $$f; \
done
.PHONY: all deps updatedeps build test xcompile package