-
Notifications
You must be signed in to change notification settings - Fork 95
/
makefile
47 lines (34 loc) · 1.17 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
BUILD_TAGS?=babble
# vendor installs all the Go dependencies in vendor/
vendor:
(rm go.sum || rm -rf vendor ) && GO111MODULE=on go mod vendor
# install compiles and places the binary in GOPATH/bin
install:
go install --ldflags '-extldflags "-static"' \
--ldflags "-X github.com/mosaicnetworks/babble/src/version.GitCommit=`git rev-parse HEAD`" \
./cmd/babble
# build compiles and places the binary in /build
build:
CGO_ENABLED=0 go build \
--ldflags "-X github.com/mosaicnetworks/babble/src/version.GitCommit=`git rev-parse HEAD`" \
-o build/babble ./cmd/babble/
# dist builds binaries for all platforms and packages them for distribution
dist:
@BUILD_TAGS='$(BUILD_TAGS)' $(CURDIR)/scripts/dist.sh $(VERSION)
# dist builds aar for mobile android
mobile-dist:
@BUILD_TAGS='$(BUILD_TAGS)' $(CURDIR)/scripts/dist_mobile.sh $(VERSION)
tests: test
test:
go test -count=1 -tags=unit ./...
flagtest:
go test -count=1 -run TestFlagEmpty ./...
extratests:
go test -count=1 -run Extra ./...
alltests:
go test -count=1 ./...
lint:
golint ./...
doc:
GO111MODULE=off godoc -play -goroot .
.PHONY: vendor install build dist test flagtest extratests alltests tests mobile-dist