File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ PKG_NAME := docker-machine
55DEBUG ?=
66# If true, "build" will produce a static binary (cross compile always produce static build regardless)
77STATIC ?=
8- # If true, turn on verbose output for build
8+ # If true, turn on verbose output for build
99VERBOSE ?=
1010# Build tags
1111BUILDTAGS ?=
@@ -16,7 +16,7 @@ COVERAGE_DIR ?= cover
1616# Whether to perform targets inside a docker container, or natively on the host
1717USE_CONTAINER ?=
1818
19- # List of cross compilation targets
19+ # List of cross compilation targets
2020ifeq ($(TARGET_OS ) ,)
2121 TARGET_OS := darwin linux windows
2222endif
Original file line number Diff line number Diff line change 1- # COVERAGE_OUTPUT dir is a temp dir (OSX/Linux compatible), unless explicitly specified through env COVERAGE_DIR
1+ # COVERAGE_OUTPUT dir is a temp dir (OSX/Linux compatible), unless explicitly specified through env COVERAGE_DIR
22COVERAGE_OUTPUT := $(COVERAGE_DIR )
33ifeq ($(COVERAGE_OUTPUT ) ,)
44 COVERAGE_OUTPUT := $(shell mktemp -d 2>/dev/null || mktemp -d -t machine-coverage)
@@ -9,7 +9,7 @@ COVERAGE_PROFILE := $(COVERAGE_OUTPUT)/profile.out
99COVERAGE_HTML := $(COVERAGE_OUTPUT ) /index.html
1010COVERAGE_MODE := set
1111
12- # Goveralls dependency
12+ # Goveralls dependency
1313GOVERALLS_BIN := $(GOPATH ) /bin/goveralls
1414GOVERALLS := $(shell [ -x $(GOVERALLS_BIN ) ] && echo $(GOVERALLS_BIN ) || echo '')
1515
Original file line number Diff line number Diff line change @@ -12,18 +12,18 @@ GOLINT := $(shell [ -x $(GOLINT_BIN) ] && echo $(GOLINT_BIN) || echo '')
1212GODEP_BIN := $(GOPATH ) /bin/godep
1313GODEP := $(shell [ -x $(GODEP_BIN ) ] && echo $(GODEP_BIN ) || echo '')
1414
15- # Honor debug
15+ # Honor debug
1616ifeq ($(DEBUG ) ,true)
1717 # Disable function inlining and variable registerization
1818 GO_GCFLAGS := -gcflags "-N -l"
1919else
20- # Turn of DWARF debugging information and strip the binary otherwise
20+ # Turn of DWARF debugging information and strip the binary otherwise
2121 GO_LDFLAGS := $(GO_LDFLAGS) -w -s
2222endif
2323
24- # Honor static
24+ # Honor static
2525ifeq ($(STATIC ) ,true)
26- # Append to the version
26+ # Append to the version
2727 GO_LDFLAGS := $(GO_LDFLAGS) -extldflags -static
2828endif
2929
You can’t perform that action at this time.
0 commit comments