-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f762460
commit 9a204c9
Showing
2 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,7 @@ _testmain.go | |
*.prof | ||
|
||
# Vendoring | ||
vendor/ | ||
vendor/ | ||
|
||
# Builds | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
NAME = $(shell awk -F\" '/^const Name/ { print $$2 }' main.go) | ||
VERSION = $(shell awk -F\" '/^const Version/ { print $$2 }' cmd/version.go) | ||
TESTDEPS = $(shell go list -f '{{range .TestImports}}{{.}} {{end}}' $(shell glide novendor)) | ||
|
||
all: deps build | ||
|
||
deps: | ||
glide install | ||
echo $(TESTDEPS) | xargs -n1 go get | ||
|
||
updatedeps: | ||
glide update | ||
|
||
build: deps | ||
@mkdir -p bin/ | ||
go build -o bin/$(NAME) | ||
|
||
test: deps | ||
go test $(shell glide novendor) -timeout=30s -parallel=4 | ||
go vet $(shell glide novendor) | ||
|
||
xcompile: deps test | ||
@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 |