On Wed, 2009-10-28 at 15:00 +0100, Tamas Papp wrote:
Hi,
If I have an ASDF system that :depends-on various other ones _and_ some other library that does not have and .asd file (eg it is a standalone .lisp file), what is the standard way of loading the latter? I am looking for something that eg automates manually executing
(load (compile-file "/path/foo.lisp"))
and how to incorporate this into a defsystem.
Caveat lector: the following is untested.
(defsystem :foo :depends-on (:asdf-system-1 :asdf-system-2) :in-order-to ((compile-op () (compile-file "/path/foo.lisp"))) :in-order-to ((load-op () (load "/path/foo"))))