X-Git-Url: http://git.kpe.io/?p=lml2.git;a=blobdiff_plain;f=lml2.asd;h=af200b9d4f06589af0d9062fbf6456a7b4dd1b4d;hp=f72c08b3d21269d1370df2fc589337f6f4e54bf9;hb=c995e5549929046c8133e920fa022bce324042e4;hpb=15694e94b48c2d8c7f9598fa5fcdaf451b7931c6 diff --git a/lml2.asd b/lml2.asd index f72c08b..af200b9 100644 --- a/lml2.asd +++ b/lml2.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml2.asd,v 1.2 2003/06/20 04:14:20 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of LML2, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -28,20 +28,25 @@ :licence "GNU General Public License" :description "Lisp Markup Language" :long-description "LML2 provides creation of XHTML for Lisp programs." - + + :depends-on (kmrcl) + :components ((:file "package") - (:file "ifstar" :depends-on ("package")) (:file "data" :depends-on ("package")) - (:file "htmlgen" :depends-on ("ifstar" "data")) + (:file "htmlgen" :depends-on ("data")) (:file "utils" :depends-on ("package")) (:file "files" :depends-on ("utils" "htmlgen")) (:file "base" :depends-on ("files")) #+ignore (:file "read-macro" :depends-on ("base")) (:file "stdsite" :depends-on ("base")) (:file "downloads" :depends-on ("base")) + (:file "apache-dir" :depends-on ("base")) )) (defmethod perform ((o test-op) (c (eql (find-system 'lml2)))) (operate 'load-op 'lml2-tests) (operate 'test-op 'lml2-tests)) + +(defmethod operation-done-p ((o test-op) (c (eql (find-system 'lml2-tests)))) + (values nil))