├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── docs.yml ├── .gitignore ├── .travis.yml ├── ChangeLog.md ├── README.md ├── defmain-test.asd ├── defmain.asd ├── examples ├── README.md ├── roswell-example │ └── example.ros ├── simple │ ├── Makefile │ ├── example.asd │ └── main.lisp └── subcommands │ ├── Makefile │ ├── example.asd │ └── main.lisp ├── qlfile ├── qlfile.lock ├── src ├── changelog.lisp ├── ci.lisp └── defmain.lisp ├── t └── defmain.lisp ├── tasks.py └── version.lisp-expr /.gitattributes: -------------------------------------------------------------------------------- 1 | docs/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/README.md -------------------------------------------------------------------------------- /defmain-test.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/defmain-test.asd -------------------------------------------------------------------------------- /defmain.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/defmain.asd -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/roswell-example/example.ros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/roswell-example/example.ros -------------------------------------------------------------------------------- /examples/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/simple/Makefile -------------------------------------------------------------------------------- /examples/simple/example.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/simple/example.asd -------------------------------------------------------------------------------- /examples/simple/main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/simple/main.lisp -------------------------------------------------------------------------------- /examples/subcommands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/subcommands/Makefile -------------------------------------------------------------------------------- /examples/subcommands/example.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/subcommands/example.asd -------------------------------------------------------------------------------- /examples/subcommands/main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/examples/subcommands/main.lisp -------------------------------------------------------------------------------- /qlfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/qlfile -------------------------------------------------------------------------------- /qlfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/qlfile.lock -------------------------------------------------------------------------------- /src/changelog.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/src/changelog.lisp -------------------------------------------------------------------------------- /src/ci.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/src/ci.lisp -------------------------------------------------------------------------------- /src/defmain.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/src/defmain.lisp -------------------------------------------------------------------------------- /t/defmain.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/t/defmain.lisp -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40ants/defmain/HEAD/tasks.py -------------------------------------------------------------------------------- /version.lisp-expr: -------------------------------------------------------------------------------- 1 | "0.12.1" 2 | --------------------------------------------------------------------------------