r4981: Auto commit for Debian build
[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.29 2003/04/29 04:56:58 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 cmu lispworks sbcl scl)
23 (pushnew :kmr-mop cl:*features*)
24
25 (defsystem kmrcl
26     :name "kmrcl"
27     :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
28     :version "1.31+"
29     :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
30     :licence "LLGPL"
31
32     :components 
33     ((:file "package")
34      (:file "macros" :depends-on ("package"))
35      (:file "functions" :depends-on ("macros"))
36      (:file "lists" :depends-on ("macros"))
37      (:file "seqs" :depends-on ("macros"))
38      (:file "io" :depends-on ("macros"))
39      (:file "console" :depends-on ("macros"))
40      (:file "strings" :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 ("seqs" "mop"))
49      (:file "equal" :depends-on ("macros" #+kmr-mop "mop"))
50      (:file "web-utils" :depends-on ("macros"))
51      (:file "xml-utils" :depends-on ("macros")))
52     )
53
54 #+(or allegro lispworks sbcl cmu scl)
55 (defmethod perform ((o test-op) (c (eql (find-system :kmrcl))))
56   (oos 'load-op 'kmrcl-tests)
57   (oos 'test-op 'kmrcl-tests))
58