Signed-off-by: Daniel Nephin <dnephin@docker.com>
| ... | ... |
@@ -134,12 +134,6 @@ init-go-pkg-cache: |
| 134 | 134 |
install: ## install the linux binaries |
| 135 | 135 |
KEEPBUNDLE=1 hack/make.sh install-binary |
| 136 | 136 |
|
| 137 |
-manpages: ## Generate man pages from go source and markdown |
|
| 138 |
- docker build ${DOCKER_BUILD_ARGS} -t docker-manpage-dev -f "man/$(DOCKERFILE)" ./man
|
|
| 139 |
- docker run --rm \ |
|
| 140 |
- -v $(PWD):/go/src/github.com/docker/docker/ \ |
|
| 141 |
- docker-manpage-dev |
|
| 142 |
- |
|
| 143 | 137 |
rpm: build ## build the rpm packages |
| 144 | 138 |
$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary build-rpm |
| 145 | 139 |
|
| ... | ... |
@@ -149,9 +143,6 @@ run: build ## run the docker daemon in a container |
| 149 | 149 |
shell: build ## start a shell inside the build env |
| 150 | 150 |
$(DOCKER_RUN_DOCKER) bash |
| 151 | 151 |
|
| 152 |
-yaml-docs-gen: build ## generate documentation YAML files consumed by docs repo |
|
| 153 |
- $(DOCKER_RUN_DOCKER) sh -c 'hack/make.sh yaml-docs-generator && ( root=$$(pwd); cd bundles/latest/yaml-docs-generator; mkdir docs; ./yaml-docs-generator --root $${root} --target $$(pwd)/docs )'
|
|
| 154 |
- |
|
| 155 | 152 |
test: build ## run the unit, integration and docker-py tests |
| 156 | 153 |
$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary cross test-unit test-integration-cli test-docker-py |
| 157 | 154 |
|
| 158 | 155 |
deleted file mode 100644 |
| ... | ... |
@@ -1,12 +0,0 @@ |
| 1 |
-#!/usr/bin/env bash |
|
| 2 |
-set -e |
|
| 3 |
- |
|
| 4 |
-[ -z "$KEEPDEST" ] && \ |
|
| 5 |
- rm -rf "$DEST" |
|
| 6 |
- |
|
| 7 |
-( |
|
| 8 |
- source "${MAKEDIR}/.binary-setup"
|
|
| 9 |
- export BINARY_SHORT_NAME="yaml-docs-generator" |
|
| 10 |
- export GO_PACKAGE='github.com/docker/docker/docs/yaml' |
|
| 11 |
- source "${MAKEDIR}/.binary"
|
|
| 12 |
-) |