forked from openshift/source-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (77 loc) · 1.65 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
80
81
82
83
84
85
86
87
# Old-skool build tools.
#
# Targets (see each target for more information):
# all: Build code.
# build: Build code.
# check: Run build, verify and tests.
# test: Run tests.
# clean: Clean up.
# release: Build release.
OUT_DIR = _output
export GOFLAGS
# Build code.
#
# Args:
# GOFLAGS: Extra flags to pass to 'go' when building.
#
# Example:
# make
# make all
all build:
hack/build-go.sh
.PHONY: all build
# Verify if code is properly organized.
#
# Example:
# make verify
verify: build
hack/verify-gofmt.sh
hack/verify-golint.sh
hack/verify-govet.sh
hack/verify-godeps.sh || true # remove this to make godepchecker's warnings actionable
hack/verify-bash-completion.sh
.PHONY: verify
# Install travis dependencies
#
# Example:
# make install-travis
install-travis:
hack/install-tools.sh
.PHONY: install-travis
# Build and 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 check
# make test
# make check WHAT=pkg/docker TESTFLAGS=-v
check: verify test
.PHONY: check
# Run unit tests
# Example:
# make test
# make test WHAT=pkg/docker TESTFLAGS=-v
test:
hack/test-go.sh $(WHAT) $(TESTS) $(TESTFLAGS)
.PHONY: test
# Remove all build artifacts.
#
# Example:
# make clean
clean:
rm -rf $(OUT_DIR)
.PHONY: clean
# Build the release.
#
# Example:
# make release
release: clean
hack/build-release.sh
hack/extract-release.sh
.PHONY: release