X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lml.asd;h=ec28c2e3bb5c4f67445d1ff9d39a8480bded5256;hb=161c8cbe18817307e8c0647f368e90854534f094;hp=43354708da89ff88494cac7389915c8f5dbacaf3;hpb=99df1b1ec110a5d304042442c3e8cb8b1d17abe8;p=lml.git diff --git a/lml.asd b/lml.asd index 4335470..ec28c2e 100644 --- a/lml.asd +++ b/lml.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.asd,v 1.7 2002/09/18 06:55:34 kevin Exp $ +;;;; $Id: lml.asd,v 1.14 2003/04/19 03:56:40 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,14 +19,24 @@ (in-package :asdf) (defsystem :lml + :name "cl-lml" + :author "Kevin M. Rosenberg " + :version "2.4.0" + :maintainer "Kevin M. Rosenberg " + :licence "GNU General Public License" + :description "Lisp Markup Language" + :long-description "LML provides creation of XHTML for Lisp programs." + :components ((:file "package") (:file "utils" :depends-on ("package")) (:file "files" :depends-on ("utils")) - (:file "lml" :depends-on ("files")) - (:file "stdsite" :depends-on ("lml")) - (:file "downloads" :depends-on ("lml")) + (:file "base" :depends-on ("files")) + (:file "read-macro" :depends-on ("base")) + (:file "stdsite" :depends-on ("base")) + (:file "downloads" :depends-on ("base")) )) -(defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'lml)))) - "cl") + + +