;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: lml.asd ;;;; Purpose: ASDF definition file for Lisp Markup Language ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; ;;;; $Id: lml.asd,v 1.8 2002/09/19 23:32:37 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; LML 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 :asdf) (defsystem :lml :name "cl-lml" :author "Kevin M. Rosenberg " :version "1.0.5" :maintainer "Kevin M. Rosenberg " :licence "GNU General Public License" :description "Lisp Markup Language" :long-description "LML provides creation of XHTML for Lisp programs." :perform (load-op :after (op lml) (pushnew :lml cl:*features*)) :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")) )) (defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'lml)))) "cl")