├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.adoc ├── millw ├── millw.bat └── millw.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: lefou 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefou/millw/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | mill.* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefou/millw/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefou/millw/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefou/millw/HEAD/README.adoc -------------------------------------------------------------------------------- /millw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefou/millw/HEAD/millw -------------------------------------------------------------------------------- /millw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefou/millw/HEAD/millw.bat -------------------------------------------------------------------------------- /millw.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lefou/millw/HEAD/millw.ps1 --------------------------------------------------------------------------------