ecl

How can ECL include ASDF dependencies in an executable?

I have this ecl-make.lisp: (asdf:oos 'asdf:compile-op :stumpwm) (defun system-objects (system) (loop for component in (asdf:module-components (asdf:find-system system)) for pathname = (asdf:component-pathname component) for directory = (pathname-directory pathname) for name = (pathname-name pathname) when (equal "lis...

How can ecl include asdf dependencies in an executable? (take 2)

This question was asked and answered by ayrnieu at http://stackoverflow.com/questions/580083/how-can-ecl-include-asdf-dependencies-in-an-executable But the example code he linked to does not actually involve any dependencies. I've tried copying the model in the stumpwm code he refers to but I can't get it to work. He are my files. -...