2013-12-18 23:06:14 -07:00
|
|
|
.PHONY: all binary build cross default docs shell test
|
2013-11-14 05:34:25 +00:00
|
|
|
|
2013-12-03 15:51:43 -07: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
|
|
|
|
2013-12-18 23:06:14 -07:00
|
|
|
cross: build
|
2013-12-23 23:31:53 -07:00
|
|
|
$(DOCKER_RUN_DOCKER) hack/make.sh binary cross
|
2013-12-18 23:06:14 -07:00
|
|
|
|
2013-12-11 10:14:56 +10:00
|
|
|
docs:
|
2013-12-03 15:51:43 -07:00
|
|
|
docker build -t docker-docs docs && docker run -p 8000:8000 docker-docs
|
2013-11-14 05:34:25 +00:00
|
|
|
|
2013-12-03 15:51:43 -07:00
|
|
|
test: build
|
2013-12-08 18:41:50 -07:00
|
|
|
$(DOCKER_RUN_DOCKER) hack/make.sh test test-integration
|
2013-11-14 05:34:25 +00:00
|
|
|
|
2013-12-03 15:51:43 -07:00
|
|
|
shell: build
|
|
|
|
$(DOCKER_RUN_DOCKER) bash
|
|
|
|
|
|
|
|
build: bundles
|
|
|
|
docker build -t docker .
|
2013-11-30 00:07:53 -08:00
|
|
|
|
|
|
|
bundles:
|
|
|
|
mkdir bundles
|