move packages to root directory
This commit is contained in:
parent
16f4bf47d5
commit
89b89b7c0b
56
Makefile
56
Makefile
|
@ -1,40 +1,40 @@
|
|||
export SOURCE_DATE_EPOCH = 0
|
||||
|
||||
out/bootstrap.oci.tgz:
|
||||
docker build -t imgrep/bootstrap --output type=oci,dest=$@ packages/bootstrap
|
||||
docker build -t imgrep/bootstrap --output type=oci,dest=$@ bootstrap
|
||||
|
||||
out/musl.oci.tgz: \
|
||||
out/bootstrap.oci.tgz
|
||||
docker build -t imgrep/musl --output type=oci,dest=$@ packages/musl
|
||||
docker build -t imgrep/musl --output type=oci,dest=$@ musl
|
||||
|
||||
out/busybox.oci.tgz: \
|
||||
out/bootstrap.oci.tgz
|
||||
docker build -t imgrep/busybox --output type=oci,dest=$@ packages/busybox
|
||||
docker build -t imgrep/busybox --output type=oci,dest=$@ busybox
|
||||
|
||||
out/binutils.oci.tgz: \
|
||||
out/bootstrap.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/binutils --output type=oci,dest=$@ packages/binutils
|
||||
docker build -t imgrep/binutils --output type=oci,dest=$@ binutils
|
||||
|
||||
out/linux-headers.oci.tgz:
|
||||
docker build -t imgrep/linux-headers --output type=oci,dest=$@ packages/linux-headers
|
||||
docker build -t imgrep/linux-headers --output type=oci,dest=$@ linux-headers
|
||||
|
||||
out/gcc.oci.tgz: \
|
||||
out/bootstrap.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/gcc --output type=oci,dest=$@ packages/gcc
|
||||
docker build -t imgrep/gcc --output type=oci,dest=$@ gcc
|
||||
|
||||
out/make.oci.tgz: \
|
||||
out/bootstrap.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/make --output type=oci,dest=$@ packages/make
|
||||
docker build -t imgrep/make --output type=oci,dest=$@ make
|
||||
|
||||
out/ca-certificates.oci.tgz:
|
||||
docker build -t imgrep/ca-certificates --output type=oci,dest=$@ packages/ca-certificates
|
||||
docker build -t imgrep/ca-certificates --output type=oci,dest=$@ ca-certificates
|
||||
|
||||
out/bash.oci.tgz: \
|
||||
out/gcc.oci.tgz
|
||||
docker build -t imgrep/bash --output type=oci,dest=$@ packages/bash
|
||||
docker build -t imgrep/bash --output type=oci,dest=$@ bash
|
||||
|
||||
out/m4.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -42,7 +42,7 @@ out/m4.oci.tgz: \
|
|||
out/binutils.oci.tgz \
|
||||
out/musl.oci.tgz \
|
||||
out/make.oci.tgz \
|
||||
docker build -t imgrep/m4 --output type=oci,dest=$@ packages/m4
|
||||
docker build -t imgrep/m4 --output type=oci,dest=$@ m4
|
||||
|
||||
out/autoconf.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -52,7 +52,7 @@ out/autoconf.oci.tgz: \
|
|||
out/make.oci.tgz \
|
||||
out/perl.oci.tgz \
|
||||
out/m4.oci.tgz
|
||||
docker build -t imgrep/autoconf --output type=oci,dest=$@ packages/autoconf
|
||||
docker build -t imgrep/autoconf --output type=oci,dest=$@ autoconf
|
||||
|
||||
out/automake.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -63,7 +63,7 @@ out/automake.oci.tgz: \
|
|||
out/perl.oci.tgz \
|
||||
out/autoconf.oci.tgz \
|
||||
out/m4.oci.tgz
|
||||
docker build -t imgrep/automake --output type=oci,dest=$@ packages/automake
|
||||
docker build -t imgrep/automake --output type=oci,dest=$@ automake
|
||||
|
||||
out/sed.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -71,7 +71,7 @@ out/sed.oci.tgz: \
|
|||
out/binutils.oci.tgz \
|
||||
out/musl.oci.tgz \
|
||||
out/make.oci.tgz
|
||||
docker build -t imgrep/sed --output type=oci,dest=$@ packages/sed
|
||||
docker build -t imgrep/sed --output type=oci,dest=$@ sed
|
||||
|
||||
out/libtool.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -82,7 +82,7 @@ out/libtool.oci.tgz: \
|
|||
out/bash.oci.tgz \
|
||||
out/sed.oci.tgz \
|
||||
out/m4.oci.tgz
|
||||
docker build -t imgrep/libtool --output type=oci,dest=$@ packages/libtool
|
||||
docker build -t imgrep/libtool --output type=oci,dest=$@ libtool
|
||||
|
||||
out/pkgconf.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -91,7 +91,7 @@ out/pkgconf.oci.tgz: \
|
|||
out/musl.oci.tgz \
|
||||
out/make.oci.tgz \
|
||||
out/libtool.oci.tgz
|
||||
docker build -t imgrep/pkgconf --output type=oci,dest=$@ packages/pkgconf
|
||||
docker build -t imgrep/pkgconf --output type=oci,dest=$@ pkgconf
|
||||
|
||||
out/libxml2.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -107,7 +107,7 @@ out/libxml2.oci.tgz: \
|
|||
out/automake.oci.tgz \
|
||||
out/pkgconf.oci.tgz \
|
||||
out/libtool.oci.tgz
|
||||
docker build -t imgrep/libxml2 --output type=oci,dest=$@ packages/libxml2
|
||||
docker build -t imgrep/libxml2 --output type=oci,dest=$@ libxml2
|
||||
|
||||
out/openssl.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -115,7 +115,7 @@ out/openssl.oci.tgz: \
|
|||
out/busybox.oci.tgz \
|
||||
out/linux-headers.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/openssl --output type=oci,dest=$@ packages/openssl
|
||||
docker build -t imgrep/openssl --output type=oci,dest=$@ openssl
|
||||
|
||||
out/go.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -123,7 +123,7 @@ out/go.oci.tgz: \
|
|||
out/busybox.oci.tgz \
|
||||
out/bash.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/go --output type=oci,dest=$@ packages/go
|
||||
docker build -t imgrep/go --output type=oci,dest=$@ go
|
||||
|
||||
out/perl.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -131,7 +131,7 @@ out/perl.oci.tgz: \
|
|||
out/busybox.oci.tgz \
|
||||
out/make.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/perl --output type=oci,dest=$@ packages/perl
|
||||
docker build -t imgrep/perl --output type=oci,dest=$@ perl
|
||||
|
||||
out/curl.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -141,7 +141,7 @@ out/curl.oci.tgz: \
|
|||
out/binutils.oci.tgz \
|
||||
out/openssl.oci.tgz \
|
||||
out/ca-certificates.oci.tgz
|
||||
docker build -t imgrep/curl --output type=oci,dest=$@ packages/curl
|
||||
docker build -t imgrep/curl --output type=oci,dest=$@ curl
|
||||
|
||||
out/python.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -151,7 +151,7 @@ out/python.oci.tgz: \
|
|||
out/openssl.oci.tgz \
|
||||
out/make.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/python --output type=oci,dest=$@ packages/python
|
||||
docker build -t imgrep/python --output type=oci,dest=$@ python
|
||||
|
||||
out/ninja.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -161,7 +161,7 @@ out/ninja.oci.tgz: \
|
|||
out/make.oci.tgz \
|
||||
out/openssl.oci.tgz \
|
||||
out/python.oci.tgz
|
||||
docker build -t imgrep/ninja --output type=oci,dest=$@ packages/ninja
|
||||
docker build -t imgrep/ninja --output type=oci,dest=$@ ninja
|
||||
|
||||
out/cmake.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -171,12 +171,12 @@ out/cmake.oci.tgz: \
|
|||
out/musl.oci.tgz \
|
||||
out/make.oci.tgz \
|
||||
out/linux-headers.oci.tgz
|
||||
docker build -t imgrep/cmake --output type=oci,dest=$@ packages/cmake
|
||||
docker build -t imgrep/cmake --output type=oci,dest=$@ cmake
|
||||
|
||||
out/py-setuptools.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
out/python.oci.tgz
|
||||
docker build -t imgrep/py-setuptools --output type=oci,dest=$@ packages/py-setuptools
|
||||
docker build -t imgrep/py-setuptools --output type=oci,dest=$@ py-setuptools
|
||||
|
||||
out/zlib.oci.tgz: \
|
||||
out/busybox.oci.tgz \
|
||||
|
@ -184,7 +184,7 @@ out/zlib.oci.tgz: \
|
|||
out/binutils.oci.tgz \
|
||||
out/musl.oci.tgz \
|
||||
out/make.oci.tgz
|
||||
docker build -t imgrep/zlib --output type=oci,dest=$@ packages/zlib
|
||||
docker build -t imgrep/zlib --output type=oci,dest=$@ zlib
|
||||
|
||||
out/llvm.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -196,7 +196,7 @@ out/llvm.oci.tgz: \
|
|||
out/ninja.oci.tgz \
|
||||
out/busybox.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/llvm --output type=oci,dest=$@ packages/llvm
|
||||
docker build -t imgrep/llvm --output type=oci,dest=$@ llvm
|
||||
|
||||
out/llvm13.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -208,7 +208,7 @@ out/llvm13.oci.tgz: \
|
|||
out/ninja.oci.tgz \
|
||||
out/busybox.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/llvm13 --output type=oci,dest=$@ packages/llvm13
|
||||
docker build -t imgrep/llvm13 --output type=oci,dest=$@ llvm13
|
||||
|
||||
out/rust.oci.tgz: \
|
||||
out/gcc.oci.tgz \
|
||||
|
@ -220,7 +220,7 @@ out/rust.oci.tgz: \
|
|||
out/make.oci.tgz \
|
||||
out/busybox.oci.tgz \
|
||||
out/musl.oci.tgz
|
||||
docker build -t imgrep/rust --output type=oci,dest=$@ packages/rust
|
||||
docker build -t imgrep/rust --output type=oci,dest=$@ rust
|
||||
|
||||
test:
|
||||
docker build -t imgrep/test-c tests/c
|
||||
|
|
Reference in New Issue