-
Notifications
You must be signed in to change notification settings - Fork 42
/
Makefile
64 lines (57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Old-skool build tools.
#
# Targets (see each target for more information):
# all: Build code.
# build: Build code.
# test-unit: Run unit tests.
# clean: Clean up.
OUT_DIR = _output
# Build code.
#
# Example:
# make
# make all
all build:
hack/build-go.sh
.PHONY: all build
# Build image.
#
# Example:
# make image
image:
hack/build-image.sh
.PHONY: image
# Remove all build artifacts.
#
# Example:
# make clean
clean:
rm -rf $(OUT_DIR)
.PHONY: clean
# Verify code conventions are properly setup.
#
# Example:
# make verify
verify: build
hack/verify-gofmt.sh
.PHONY: verify
# Run unit tests.
#
# Args:
# WHAT: Directory names to test. All *_test.go files under these
# directories will be run. If not specified, "everything" will be tested.
# TESTS: Same as WHAT.
# GOFLAGS: Extra flags to pass to 'go' when building.
# TESTFLAGS: Extra flags that should only be passed to hack/test-go.sh
#
# Example:
# make test-unit
# make test-unit WHAT=pkg/build GOFLAGS=-v
test-unit:
GOTEST_FLAGS="$(TESTFLAGS)" hack/test-go.sh $(WHAT) $(TESTS)
.PHONY: test-unit
# Install travis dependencies
#
install-travis:
hack/install-tools.sh
.PHONY: install-travis