r3474: *** empty log message ***
[kmrcl.git] / kmrcl.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          kmrcl.asd
6 ;;;; Purpose:       ASDF system definition for KMRCL package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: kmrcl.asd,v 1.22 2002/11/25 07:45:36 kevin Exp $
11 ;;;;
12 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; KMRCL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 (defsystem :kmrcl
22     :perform (load-op :after (op kmrcl)
23                       (pushnew :kmrcl cl:*features*))
24     :components 
25     ((:file "package")
26      (:file "genutils" :depends-on ("package"))
27      (:file "strings" :depends-on ("package"))
28      (:file "equal" :depends-on ("package"))
29      (:file "buff-input" :depends-on ("genutils"))
30      (:file "telnet-server" :depends-on ("genutils"))
31      (:file "random" :depends-on ("package"))
32      (:file "cl-symbols" :depends-on ("package"))
33      (:file "math" :depends-on ("package"))
34      #+allegro (:file "attrib-class" :depends-on ("package"))
35      (:file "web-utils" :depends-on ("package"))
36      (:file "xml-utils" :depends-on ("package")))
37     )
38
39
40