├── ANNOUNCE ├── Bootstrap └── GNUmakefile ├── Bundles └── GNUmakefile ├── Dependencies └── README ├── Developer ├── GNUmakefile └── Services │ └── GNUmakefile ├── Frameworks └── GNUmakefile ├── GNUmakefile ├── HACKING ├── HACKING.md ├── INSTALL ├── INSTALL.FreeBSD ├── INSTALL.Ubuntu ├── INSTALL.md ├── README ├── README.md ├── Services ├── GNUmakefile ├── Private │ └── GNUmakefile └── User │ └── GNUmakefile ├── Themes └── README ├── documentation.make ├── etoile-fetch.sh ├── etoile.make ├── setdown.sh ├── setup.sh └── smalltalk.make /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /Bootstrap/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Bootstrap/GNUmakefile -------------------------------------------------------------------------------- /Bundles/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Bundles/GNUmakefile -------------------------------------------------------------------------------- /Dependencies/README: -------------------------------------------------------------------------------- 1 | Etoile dependencies go here. 2 | -------------------------------------------------------------------------------- /Developer/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Developer/GNUmakefile -------------------------------------------------------------------------------- /Developer/Services/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Developer/Services/GNUmakefile -------------------------------------------------------------------------------- /Frameworks/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Frameworks/GNUmakefile -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/GNUmakefile -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/HACKING -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/HACKING.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.FreeBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/INSTALL.FreeBSD -------------------------------------------------------------------------------- /INSTALL.Ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/INSTALL.Ubuntu -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/README.md -------------------------------------------------------------------------------- /Services/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Services/GNUmakefile -------------------------------------------------------------------------------- /Services/Private/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Services/Private/GNUmakefile -------------------------------------------------------------------------------- /Services/User/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/Services/User/GNUmakefile -------------------------------------------------------------------------------- /Themes/README: -------------------------------------------------------------------------------- 1 | Themes go here 2 | -------------------------------------------------------------------------------- /documentation.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/documentation.make -------------------------------------------------------------------------------- /etoile-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/etoile-fetch.sh -------------------------------------------------------------------------------- /etoile.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/etoile.make -------------------------------------------------------------------------------- /setdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/setdown.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/setup.sh -------------------------------------------------------------------------------- /smalltalk.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/Etoile/HEAD/smalltalk.make --------------------------------------------------------------------------------