Plaster

text
------------------staple.ext.lisp (defmethod staple:packages ((system (eql (asdf:find-system :small)))) (list (find-package :small))) (defmethod staple:packages ((system (eql (asdf:find-system :small-dna)))) (list (find-package :small-dna))) ------------------small.asd (asdf:defsystem small :version "0.1.0" :serial T :depends-on (#:alexandria #:magicl #:defclass-std #:fset) :components ((:file "packages") (:file "src/core/linear-algebra") (:file "src/core/chem-obj"))) ---------------small-dna.asd (asdf:defsystem small-dna :version "0.1.0" :serial T :components ((:file "src/dna/packages") (:file "src/dna/dna") (:file "src/dna/dna-nt") (:file "src/dna/dna-strand") (:file "src/dna/dna-helix-strand") (:file "src/dna/dna-single-strand") ) :depends-on (:small))