2017-04-25 19:57:06 +03:00
|
|
|
#
|
2017-05-09 19:38:23 +03:00
|
|
|
# github.com/docker/cli
|
2017-04-25 19:57:06 +03:00
|
|
|
#
|
|
|
|
|
2017-05-14 20:24:10 +03:00
|
|
|
all: binary
|
|
|
|
|
2017-04-25 19:57:06 +03:00
|
|
|
# remove build artifacts
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: clean
|
2017-04-25 19:57:06 +03:00
|
|
|
clean:
|
2017-05-08 19:01:44 +03:00
|
|
|
@rm -rf ./build/*
|
2017-04-25 19:57:06 +03:00
|
|
|
|
2017-04-28 01:57:35 +03:00
|
|
|
# run go test
|
|
|
|
# the "-tags daemon" part is temporary
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: test
|
2017-04-28 01:57:35 +03:00
|
|
|
test:
|
|
|
|
@go test -tags daemon -v $(shell go list ./... | grep -v /vendor/)
|
|
|
|
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: lint
|
2017-05-02 22:10:03 +03:00
|
|
|
lint:
|
|
|
|
@gometalinter --config gometalinter.json ./...
|
|
|
|
|
2017-05-12 01:52:17 +03:00
|
|
|
|
|
|
|
.PHONY: binary
|
|
|
|
binary:
|
|
|
|
@./scripts/build/binary
|
|
|
|
|
2017-04-25 19:57:06 +03:00
|
|
|
# build the CLI for multiple architectures
|
2017-05-10 00:29:14 +03:00
|
|
|
.PHONY: cross
|
2017-05-12 01:52:17 +03:00
|
|
|
cross:
|
2017-05-09 19:38:23 +03:00
|
|
|
@./scripts/build/cross
|
2017-05-02 23:40:29 +03:00
|
|
|
|
2017-05-12 01:52:17 +03:00
|
|
|
.PHONY: dynbinary
|
|
|
|
dynbinary:
|
|
|
|
@./scripts/build/dynbinary
|
|
|
|
|
2017-05-10 00:29:14 +03:00
|
|
|
# download dependencies (vendor/) listed in vendor.conf
|
|
|
|
.PHONY: vendor
|
2017-05-02 23:40:29 +03:00
|
|
|
vendor: vendor.conf
|
|
|
|
@vndr 2> /dev/null
|
2017-05-14 20:24:10 +03:00
|
|
|
@scripts/validate/check-git-diff vendor
|
2017-05-09 22:37:22 +03:00
|
|
|
|
|
|
|
cli/compose/schema/bindata.go: cli/compose/schema/data/*.json
|
|
|
|
go generate github.com/docker/cli/cli/compose/schema
|
|
|
|
|
|
|
|
compose-jsonschema: cli/compose/schema/bindata.go
|
2017-05-14 20:24:10 +03:00
|
|
|
@scripts/validate/check-git-diff cli/compose/schema/bindata.go
|