r2656: initial import
[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.1 2002/09/16 01:13:49 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     :default-component-class kmr-cl-source-file
23     :pathname #.(translate-logical-pathname "KLISP-CVS:lml;")
24     :components
25     ((:file "package")
26      (:file "utils" :depends-on ("package"))
27      (:file "files" :depends-on ("utils"))
28      (:file "lml" :depends-on ("files"))
29      (:file "stdsite" :depends-on ("lml"))
30      (:file "downloads" :depends-on ("lml"))
31      (:file "pgsite" :depends-on ("lml"))
32     ))