mirror of
https://review.haiku-os.org/haiku
synced 2025-02-07 14:25:58 +01:00
14 lines
599 B
Makefile
14 lines
599 B
Makefile
default:
|
|
docker build . -t docker.io/haiku/bootstrap
|
|
clean:
|
|
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
|