From 4e594f4ee39312a57377137695462f7bbcfb5d4f Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Mon, 13 Nov 2023 14:48:49 -0800 Subject: [PATCH] reflect current package deps --- Makefile | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 51d94de..d37abca 100644 --- a/Makefile +++ b/Makefile @@ -4,30 +4,29 @@ out/bootstrap.oci.tgz: docker build -t ocirep/bootstrap --output type=oci,dest=$@ packages/bootstrap out/musl.oci.tgz: \ + out/bootstrap.oci.tgz + docker build -t ocirep/musl --output type=oci,dest=$@ packages/musl + +out/busybox.oci.tgz: \ + out/bootstrap.oci.tgz \ + docker build -t ocirep/busybox --output type=oci,dest=$@ packages/busybox + +out/binutils.oci.tgz: \ + out/bootstrap.oci.tgz \ out/musl.oci.tgz docker build -t ocirep/musl --output type=oci,dest=$@ packages/musl out/gcc.oci.tgz: \ - out/bootstrap.oci.tgz + out/bootstrap.oci.tgz \ + out/musl.oci.tgz docker build -t ocirep/gcc --output type=oci,dest=$@ packages/gcc -out/glibc.oci.tgz: \ - out/gcc.oci.tgz - docker build -t ocirep/glibc --output type=oci,dest=$@ packages/glibc - out/bash.oci.tgz: \ out/gcc.oci.tgz \ - out/glibc.oci.tgz docker build -t ocirep/bash --output type=oci,dest=$@ packages/bash -out/busybox.oci.tgz: \ - out/gcc.oci.tgz \ - out/glibc.oci.tgz - docker build -t ocirep/busybox --output type=oci,dest=$@ packages/busybox - out/go.oci.tgz: \ out/gcc.oci.tgz \ - out/glibc.oci.tgz \ out/busybox.oci.tgz \ out/bash.oci.tgz docker build -t ocirep/go --output type=oci,dest=$@ packages/go