(defsystem "ffnn" :version "0.0.1" :author "" :license "" :depends-on () :components ((:module "src" :components ((:file "package") (:file "algo1") (:file "algo2")))) :description "" :in-order-to ((test-op (test-op "ffnn/tests")))) (defsystem "ffnn/tests" :author "" :license "" :depends-on ("ffnn" "rove") :components ((:module "tests" :components ((:file "algo1") (:file "algo2")))) :description "Test system for ffnn" :perform (test-op (op c) (symbol-call :rove :run c)))