1default: 2 docker build . -t docker.io/haiku/bootstrap 3clean: 4 docker rm docker.io/haiku/bootstrap 5 docker volume rm bootstrap_work 6init: 7 docker run -v bootstrap_work:/work docker.io/haiku/bootstrap prep 8crosstools: 9 docker run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap crosstools 10bootstrap: 11 docker run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap bootstrap 12enter: 13 docker run -it -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap /bin/bash -l 14