From a9a883a5b4dde5af9c50ec541a8b67a6cc458bdc Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sat, 15 Oct 2022 01:17:33 -0700 Subject: [PATCH] split building into phases (superficial) --- build-all | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build-all b/build-all index 01e0745..a41bd53 100755 --- a/build-all +++ b/build-all @@ -39,12 +39,17 @@ build() { : \ : \ && me="$(readlink -f "$0")" && cd "${me%/*}" && { [ -d out ] || mkdir out ;} \ -\ + && : \ +`# phase 1` \ && build notwa-util \ +`# phase 2` \ && build cosmo-bootstrap \ +`# phase 3` \ && build cosmo-all \ && build cosmo-dist \ +`# phase 4` \ && build cosmo-base \ +`# phase 5` \ && build cosmo-kuroko \ && build cosmo-muon \ && build cosmo-perl \