r4666: *** 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.25 2003/04/28 23:51:59 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 (defpackage #:kmrcl-system (:use #:asdf #:cl))
20 (in-package #:kmrcl-system)
21
22 #+(or allegro cmucl lispworks sbcl scl) (pushnew :kmr-mop cl:*features*)
23
24 (defsystem kmrcl
25     :name "kmrcl"
26     :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
27     :version "1.31+"
28     :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
29     :licence "LLGPL"
30
31     :components 
32     ((:file "package")
33      (:file "macros" :depends-on ("package"))
34      (:file "functions" :depends-on ("macros"))
35      (:file "lists" :depends-on ("macros"))
36      (:file "seqs" :depends-on ("macros"))
37      (:file "io" :depends-on ("macros"))
38      (:file "console" :depends-on ("macros"))
39      (:file "strings" :depends-on ("genutils"))
40      (:file "equal" :depends-on ("macros"))
41      (:file "buff-input" :depends-on ("macros"))
42      (:file "telnet-server" :depends-on ("macros"))
43      (:file "random" :depends-on ("macros"))
44      (:file "symbols" :depends-on ("macros"))
45      (:file "datetime" :depends-on ("macros"))
46      (:file "math" :depends-on ("macros"))
47      #+kmr-mop (:file "mop" :depends-on ("macros"))
48      #+kmr-mop (:file "attrib-class" :depends-on ("genutils" "mop"))
49      (:file "web-utils" :depends-on ("macros"))
50      (:file "xml-utils" :depends-on ("macros")))
51     )
52
53 #+(or allegro lispworks sbcl cmu scl)
54 (defmethod perform ((o test-op) (c (eql (find-system :kmrcl))))
55   (oos 'load-op 'kmrcl-tests)
56   (oos 'test-op 'kmrcl-tests))
57
58 #+kmr-mop
59 (setq cl:*features* (delete :kmr-mop cl:*features*))