├── LICENSE ├── README.md ├── asd-generator.asd ├── asd-generator.lisp ├── package.lisp ├── roswell └── update-asdf.ros └── test ├── asd-generator-data.asd ├── asd-generator-test.asd ├── constants.lisp ├── constants2.lisp ├── grovel.lisp ├── package.lisp └── src ├── a.lisp ├── b.lisp ├── c.lisp ├── more-grovels ├── a.lisp ├── b.lisp └── c.lisp ├── non-recursive ├── a.lisp ├── b.lisp ├── c.lisp └── sub │ ├── a.lisp │ ├── b.lisp │ └── c.lisp ├── not-specified-anywhere ├── a.lisp ├── b.lisp └── c.lisp ├── rest.lisp ├── sub └── a.lisp └── sub2 ├── a.lisp ├── b.lisp └── c.lisp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/README.md -------------------------------------------------------------------------------- /asd-generator.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/asd-generator.asd -------------------------------------------------------------------------------- /asd-generator.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/asd-generator.lisp -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/package.lisp -------------------------------------------------------------------------------- /roswell/update-asdf.ros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/roswell/update-asdf.ros -------------------------------------------------------------------------------- /test/asd-generator-data.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/test/asd-generator-data.asd -------------------------------------------------------------------------------- /test/asd-generator-test.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoe/asd-generator/HEAD/test/asd-generator-test.asd -------------------------------------------------------------------------------- /test/constants.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/constants2.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/grovel.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/package.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/a.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/b.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/c.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/more-grovels/a.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/more-grovels/b.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/more-grovels/c.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/non-recursive/a.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/non-recursive/b.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/non-recursive/c.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/non-recursive/sub/a.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/non-recursive/sub/b.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/non-recursive/sub/c.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/not-specified-anywhere/a.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/not-specified-anywhere/b.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/not-specified-anywhere/c.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/rest.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/sub/a.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/sub2/a.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/sub2/b.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/sub2/c.lisp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------