├── .dir-locals.el ├── .github └── workflows │ └── compile.yml ├── .gitignore ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.org └── auto-compile.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacscollective/auto-compile/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacscollective/auto-compile/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*.elc 2 | /*-autoloads.el 3 | /.config.mk 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacscollective/auto-compile/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacscollective/auto-compile/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacscollective/auto-compile/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacscollective/auto-compile/HEAD/README.org -------------------------------------------------------------------------------- /auto-compile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacscollective/auto-compile/HEAD/auto-compile.el --------------------------------------------------------------------------------