5e89e2cd57088395eee24603842cccfa0f8f2cf2
[lml.git] / lml.system
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          lml.system
6 ;;;; Purpose:       Defsystem file for Lisp Markup Language
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: lml.system,v 1.2 2002/09/16 01:41:16 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 :cl-user)
20
21 (mk:defsystem :lml
22     :source-pathname "CL-LIBRARY:lml;"
23     :source-extension "cl"
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"))))