From: Gary King Date: Tue, 10 Jun 2008 12:57:49 +0000 (-0400) Subject: More reorganization: simplify dependencies, move graph-metrics into a system connection X-Git-Url: http://repo.macrolet.net/gitweb/?p=cl-graph.git;a=commitdiff_plain;h=da28401a80e227702094801992f6177894f5698f More reorganization: simplify dependencies, move graph-metrics into a system connection darcs-hash:20080610125749-3cc5d-ba49ffeb616c4a9ef74677debfcf672a89c445b5.gz --- diff --git a/cl-graph.asd b/cl-graph.asd index ace07b1..f6537f3 100644 --- a/cl-graph.asd +++ b/cl-graph.asd @@ -33,8 +33,6 @@ instructions.")) :depends-on ("graph")) (:file "graph-matrix" :depends-on ("graph")) - (:file "graph-metrics" - :depends-on ("graph")) (:file "graph-algorithms" :depends-on ("graph")) @@ -52,12 +50,12 @@ instructions.")) (funcall (intern (symbol-name '#:run-tests) :lift) :config :generic)) - :depends-on (:metatilities + :depends-on (:metatilities-base + :dynamic-classes :cl-containers :metabang-bind - :cl-mathstats - ;; makes ASDF-Install get this automatically - :asdf-system-connections + ;:cl-mathstats + :moptilities )) (defmethod operation-done-p @@ -90,3 +88,11 @@ instructions.")) :components ((:module "dev" :components ((:file "copying"))))) + +#+asdf-system-connections +(asdf:defsystem-connection cl-graph-and-cl-mathstats + :requires (cl-graph cl-mathstats) + :components ((:module + "dev" + :components + ((:file "graph-metrics")))))