r2747: *** empty log message ***
[lml.git] / lml.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          lml.asd
6 ;;;; Purpose:       ASDF definition file for Lisp Markup Language
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: lml.asd,v 1.7 2002/09/18 06:55:34 kevin Exp $
11 ;;;;
12 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; LML users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 (defsystem :lml
22   :components
23   ((:file "package")
24    (:file "utils" :depends-on ("package"))
25    (:file "files" :depends-on ("utils"))
26    (:file "lml" :depends-on ("files"))
27    (:file "stdsite" :depends-on ("lml"))
28    (:file "downloads" :depends-on ("lml"))
29    ))
30
31 (defmethod source-file-type  ((c cl-source-file) (s (eql (find-system 'lml)))) 
32    "cl")