From 78e05832fa714e9355f49bb3313b67dba1a069e6 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Fri, 14 Oct 2022 16:44:57 -0700 Subject: [PATCH] rename stuff --- README.md | 14 +++++++------- build-all | 4 ++-- {cosmo-build-all => cosmo-all}/Dockerfile | 0 {cosmo-build => cosmo-bootstrap}/Dockerfile | 0 {cosmo-build => cosmo-bootstrap}/make.com | Bin 5 files changed, 9 insertions(+), 9 deletions(-) rename {cosmo-build-all => cosmo-all}/Dockerfile (100%) rename {cosmo-build => cosmo-bootstrap}/Dockerfile (100%) rename {cosmo-build => cosmo-bootstrap}/make.com (100%) diff --git a/README.md b/README.md index 242876d..58799f3 100644 --- a/README.md +++ b/README.md @@ -31,21 +31,21 @@ the base cosmopolitan library and binaries, with some minor patches and a custom distrib. --> - * **cosmo-build:** builds the basic libraries (i.e. + * **cosmo-bootstrap:** builds the basic libraries (i.e. cosmopolitan libc) and binaries to bootstrap itself and build other software against. also includes `unzip.com`. ### Phase 3 - * **cosmo-assimilate:** converts Actually Portable Executables - into native binaries. - - * **cosmo-awk:** Actually Portable awk (fork of One True Awk) - - * **cosmo-build-all:** builds almost everything else from + * **cosmo-all:** builds almost everything else from the cosmopolitan repository (i.e. first-class third-party support) the "flavor" used can be different than that of cosmo-build. + * **cosmo-assimilate:** converts Actually Portable Executables + into native binaries. typically unnecessary, but sometimes nice. + + * **cosmo-awk:** Actually Portable awk (fork of One True Awk) + * **cosmo-dist:** only contains the essentials from cosmo-build. * **cosmo-make:** Landlocked Make (fork of GNU Make) diff --git a/build-all b/build-all index f6a8f17..fc565d9 100755 --- a/build-all +++ b/build-all @@ -38,11 +38,11 @@ build() { : \ `# phase 1` \ && build notwa-util \ `# phase 2` \ - && build cosmo-build \ + && build cosmo-bootstrap \ `# phase 3` \ + && build cosmo-all \ && build cosmo-assimilate \ && build cosmo-awk \ - && build cosmo-build-all \ && build cosmo-dist \ && build cosmo-make \ && build cosmo-sed \ diff --git a/cosmo-build-all/Dockerfile b/cosmo-all/Dockerfile similarity index 100% rename from cosmo-build-all/Dockerfile rename to cosmo-all/Dockerfile diff --git a/cosmo-build/Dockerfile b/cosmo-bootstrap/Dockerfile similarity index 100% rename from cosmo-build/Dockerfile rename to cosmo-bootstrap/Dockerfile diff --git a/cosmo-build/make.com b/cosmo-bootstrap/make.com similarity index 100% rename from cosmo-build/make.com rename to cosmo-bootstrap/make.com