-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
79 lines (59 loc) · 2.09 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.PHONY: build fmt lint run test vendor_clean vendor_get vendor_update vet list
# Prepend our _vendor directory to the system GOPATH
# so that import path resolution will prioritize
# our third party snapshots.
GOPATH := ${PWD}/_vendor:${GOPATH}
export GOPATH
BINARY=./bin/gserver
VERSION=1.3.2
BUILD=`git rev-parse HEAD`
LDFLAGS=-ldflags "-X main.Version=${VERSION} -X main.Build=${BUILD}"
.DEFAULT_GOAL: build
build:
go build ${LDFLAGS} -o ${BINARY} ./src/*.go
run: build
${BINARY}
osx:
GOOS="darwin" GOARCH="amd64" go build ${LDFLAGS} -o ${BINARY}-osx ./src/*.go
linux:
GOOS="linux" GOARCH="amd64" go build ${LDFLAGS} -o ${BINARY}-linux ./src/*.go
windows:
GOOS="windows" GOARCH="amd64" go build ${LDFLAGS} -o ${BINARY}.exe ./src/*.go
# http://golang.org/cmd/go/#hdr-Run_gofmt_on_package_sources
fmt:
go fmt ./src/...
# https://github.com/golang/lint
# go get github.com/golang/lint/golint
lint:
golint ./src
test:
go test ./src/...
install:
go install ${LDFLAGS} -o ${BINARY} ./src/*.go
clean:
if [ -f ${BINARY} ] ; then rm ${BINARY} ; fi
list:
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | xargs
vendor_clean:
rm -dRf ./_vendor/src
# We have to set GOPATH to just the _vendor
# directory to ensure that `go get` doesn't
# update packages in our primary GOPATH instead.
# This will happen if you already have the package
# installed in GOPATH since `go get` will use
# that existing location as the destination.
vendor_get: vendor_clean
GOPATH=${PWD}/_vendor go get -d -u -v \
github.com/gorilla/context \
github.com/gorilla/websocket \
github.com/gorilla/handlers \
github.com/gorilla/mux
vendor_update: vendor_get
rm -rf `find ./_vendor/src -type d -name .git` \
&& rm -rf `find ./_vendor/src -type d -name .hg` \
&& rm -rf `find ./_vendor/src -type d -name .bzr` \
&& rm -rf `find ./_vendor/src -type d -name .svn`
# http://godoc.org/code.google.com/p/go.tools/cmd/vet
# go get code.google.com/p/go.tools/cmd/vet
vet:
go vet ./src/...