moby--moby/Makefile

30 lines
628 B
Makefile
Raw Normal View History

.PHONY: all binary build cross default docs shell test
2013-11-14 05:34:25 +00:00
DOCKER_RUN_DOCKER := docker run -rm -i -t -privileged -e TESTFLAGS -v $(CURDIR)/bundles:/go/src/github.com/dotcloud/docker/bundles docker
default: binary
all: build
$(DOCKER_RUN_DOCKER) hack/make.sh
binary: build
$(DOCKER_RUN_DOCKER) hack/make.sh binary
2013-11-14 05:34:25 +00:00
cross: build
$(DOCKER_RUN_DOCKER) hack/make.sh cross
2013-12-11 00:14:56 +00:00
docs:
docker build -t docker-docs docs && docker run -p 8000:8000 docker-docs
2013-11-14 05:34:25 +00:00
test: build
$(DOCKER_RUN_DOCKER) hack/make.sh test test-integration
2013-11-14 05:34:25 +00:00
shell: build
$(DOCKER_RUN_DOCKER) bash
build: bundles
docker build -t docker .
bundles:
mkdir bundles