c5287be1f3
Change-Id: Id36226f121d4a75adc4799ae6cd8cddff2149b10
15 lines
686 B
Makefile
15 lines
686 B
Makefile
default:
|
|
docker build . -t docker.io/haiku/bootstrap
|
|
clean:
|
|
docker ps -q --filter=ancestor=docker.io/haiku/bootstrap | xargs -I {} docker kill {}
|
|
docker ps -a -q --filter=ancestor=docker.io/haiku/bootstrap | xargs -I {} docker rm {}
|
|
docker volume rm bootstrap_work
|
|
init:
|
|
docker run -v bootstrap_work:/work docker.io/haiku/bootstrap prep
|
|
crosstools:
|
|
docker run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap crosstools
|
|
bootstrap:
|
|
docker run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap bootstrap
|
|
enter:
|
|
docker run -it -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap /bin/bash -l
|