X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=2%2Flml2.asd;fp=2%2Flml2.asd;h=ae455701cc40ef829f7418b2dbbfcf76ef208311;hb=096b456fe920373f3b54fbe47f10f3e41c4fe925;hp=0000000000000000000000000000000000000000;hpb=9191a298494fa0128d7633518d63c566622bee63;p=lml.git diff --git a/2/lml2.asd b/2/lml2.asd new file mode 100644 index 0000000..ae45570 --- /dev/null +++ b/2/lml2.asd @@ -0,0 +1,47 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: lml2.asd +;;;; Purpose: ASDF definition file for Lisp Markup Language Version 2 +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Aug 2002 +;;;; +;;;; $Id: lml2.asd,v 1.1 2003/06/20 04:12:29 kevin Exp $ +;;;; +;;;; This file, part of LML2, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; LML2 users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU General Public License v2 +;;;; (http://www.gnu.org/licenses/gpl.html) +;;;; ************************************************************************* + +(in-package #:cl-user) +(defpackage #:lml2-system (:use #:asdf #:cl)) +(in-package #:lml2-system) + +(defsystem lml2 + :name "lml2" + :author "Kevin M. Rosenberg " + :version "1.0" + :maintainer "Kevin M. Rosenberg " + :licence "GNU General Public License" + :description "Lisp Markup Language" + :long-description "LML2 provides creation of XHTML for Lisp programs." + + :components + ((:file "package") + (:file "ifstar" :depends-on ("package")) + (:file "data" :depends-on ("package")) + (:file "htmlgen" :depends-on ("ifstar" "data")) + (:file "utils" :depends-on ("package")) + (:file "files" :depends-on ("utils" "htmlgen")) + (:file "base" :depends-on ("files")) + (:file "read-macro" :depends-on ("base")) + (:file "stdsite" :depends-on ("base")) + (:file "downloads" :depends-on ("base")) + )) + +(defmethod perform ((o test-op) (c (eql (find-system 'lml2)))) + (operate 'load-op 'lml2-tests) + (operate 'test-op 'lml2-tests))