[cxml-cvs] CVS cxml

dlichteblau dlichteblau at common-lisp.net
Sun Feb 11 18:21:20 UTC 2007


Update of /project/cxml/cvsroot/cxml
In directory clnet:/tmp/cvs-serv26091

Modified Files:
	cxml.asd 
Log Message:
klacks parser


--- /project/cxml/cvsroot/cxml/cxml.asd	2006/09/13 15:58:36	1.13
+++ /project/cxml/cvsroot/cxml/cxml.asd	2007/02/11 18:21:20	1.14
@@ -109,6 +109,18 @@
      (:file "dom-sax"         :depends-on ("package")))
     :depends-on (:cxml-xml))
 
+(asdf:defsystem :cxml-klacks
+    :default-component-class closure-source-file
+    :pathname (merge-pathnames
+               "klacks/"
+               (make-pathname :name nil :type nil :defaults *load-truename*))
+    :serial t
+    :components
+    ((:file "package")
+     (:file "klacks")
+     (:file "klacks-impl"))
+    :depends-on (:cxml-xml))
+
 (asdf:defsystem :cxml-test
     :default-component-class closure-source-file
     :pathname (merge-pathnames
@@ -117,4 +129,6 @@
     :components ((:file "domtest") (:file "xmlconf"))
     :depends-on (:cxml-xml :cxml-dom))
 
-(asdf:defsystem :cxml :components () :depends-on (:cxml-dom :cxml-test))
+(asdf:defsystem :cxml
+    :components ()
+    :depends-on (:cxml-dom :cxml-klacks :cxml-test))




More information about the Cxml-cvs mailing list