Consider this simple project with a flat directory structure:
example
|-- example.asd
|-- functions.lisp
|-- main.lisp
|-- packages.lisp
`-- tools.lisp
The example.asd file is really just another Lisp file with little more than an ASDF-specific function call. Assuming your project depends o...