-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathMakefile
More file actions
152 lines (120 loc) · 4.24 KB
/
Makefile
File metadata and controls
152 lines (120 loc) · 4.24 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
GO ?= go
GOFMT ?= gofmt
V ?=
PREFIX ?= /usr/local
PKGS = $(shell go list ./... | tr '\n' ',' | head -c -1)
PKGNAME = mender-artifact
PKGFILES = $(shell find . \( -path ./vendor -o -path ./Godeps \) -prune \
-o -type f -name '*.go' -print)
PKGFILES_notest = $(shell echo $(PKGFILES) | tr ' ' '\n' | grep -v _test.go)
GOCYCLO ?= 20
GOARCH ?= $(shell go env GOARCH)
GOOS ?= $(shell go env GOOS)
CGO_ENABLED=1
export CGO_ENABLED
TOOLS = \
github.com/fzipp/gocyclo/... \
github.com/opennota/check/cmd/varcheck
VERSION = $(shell git describe --tags --dirty --exact-match 2>/dev/null || git rev-parse --short HEAD)
GO_LDFLAGS = \
-ldflags "-X github.com/mendersoftware/mender-artifact/cli.Version=$(VERSION)"
ifeq ($(V),1)
BUILDV = -v
endif
TAGS ?=
ifneq ($(GOOS),linux)
TAGS += nopkcs11
endif
default: help
help:
@echo "make [TARGETS...]"
@echo
@echo "The following targets are available:"
@echo
@echo " help: Print this usage information."
@echo
@echo " build: Build mender-artifact natively"
@echo " build-cover: Build mender-artifact instrumented for code coverage"
@echo " build-natives: Cross-build mender-artifact for all platforms"
@echo " clean: Remove build artifacts"
@echo
@echo " install: Install build artifacts on the locally"
@echo " uninstall: Uninstall build artifacts from the localhost"
@echo
@echo " test: Run tests"
@echo " check: Run various code checking tools"
@echo " coverage: Run code coverage checks"
build:
$(GO) build $(GO_LDFLAGS) $(BUILDV) -tags '$(TAGS)'
build-cover:
$(GO) build -cover $(GO_LDFLAGS) $(BUILDV) -tags '$(TAGS)'
PLATFORMS := darwin linux windows
$(PKGNAME)-%:
env CGO_ENABLED=$(CGO_ENABLED) \
GOARCH=$(GOARCH) \
GOOS=$(GOOS) \
go build \
-a $(GO_LDFLAGS) $(BUILDV) -tags '$(TAGS)' \
-o $@
.nopkcs11:
$(warning "WARNING: Building without pkcs11 support")
build-native-linux: $(PKGNAME)-linux
build-native-mac: GOOS = darwin
build-native-mac: TAGS = nopkcs11
build-native-mac: CGO_ENABLED = 0
build-native-mac: .nopkcs11 $(PKGNAME)-darwin
build-native-windows: GOOS = windows
build-native-windows: TAGS = nopkcs11
build-native-windows: GO_LDFLAGS = -ldflags "-X github.com/mendersoftware/mender-artifact/cli.Version=44d6905 -linkmode=internal -s -w -extldflags '-static' -extld=x86_64-w64-mingw32-gcc"
build-native-windows: .nopkcs11 $(PKGNAME)-windows.exe
build-natives: build-native-linux build-native-mac build-native-windows
install:
@$(GO) install $(GO_LDFLAGS) $(BUILDV) $(BUILDTAGS)
install-autocomplete-scripts:
@echo "Installing Bash auto-complete script into $(DESTDIR)/etc/bash_completion.d/"
@install -Dm0644 ./autocomplete/bash_autocomplete $(DESTDIR)/etc/bash_completion.d/mender-artifact
@if which zsh >/dev/null 2>&1 ; then \
echo "Installing zsh auto-complete script into $(DESTDIR)$(PREFIX)/share/zsh/site-functions/" && \
install -Dm0644 ./autocomplete/zsh_autocomplete $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_mender-artifact \
; fi
clean:
$(GO) clean
rm -f mender-artifact-darwin mender-artifact-linux mender-artifact-windows.exe
rm -f coverage.txt coverage-tmp.txt
get-tools:
set -e ; for t in $(TOOLS); do \
echo "-- go getting $$t"; \
go get -u $$t; \
done
go mod vendor
get-build-deps:
apt-get update -qq
apt-get install -yyq $(shell cat deb-requirements.txt)
check: test extracheck
tooldep:
echo "check if mtools is installed on the system"
mtools --version
test: tooldep
$(GO) test -v ./...
extracheck:
echo "-- checking if code is gofmt'ed"
@if [ -n "$$($(GOFMT) -d $(PKGFILES))" ]; then \
"$$($(GOFMT) -d $(PKGFILES))" \
echo "-- gofmt check failed"; \
/bin/false; \
fi
echo "-- checking with govet"
$(GO) vet -unsafeptr=false
echo "-- checking with varcheck"
varcheck .
echo "-- checking cyclometric complexity > $(GOCYCLO)"
gocyclo -over $(GOCYCLO) $(PKGFILES_notest)
cover: coverage
$(GO) tool cover -func=coverage.txt
htmlcover: coverage
$(GO) tool cover -html=coverage.txt
coverage:
rm -f coverage.txt
go test -tags '$(TAGS)' -covermode=atomic -coverpkg=$(PKGS) -coverprofile=coverage.txt ./...
.PHONY: help build clean get-tools test check \
cover htmlcover coverage tooldep install-autocomplete-scripts