;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: kmrcl.asd ;;;; Purpose: ASDF system definition for KMRCL package ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; ;;;; $Id: kmrcl.asd,v 1.24 2003/04/28 21:12:27 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; KMRCL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* (defpackage #:kmrcl-system (:use #:asdf #:cl)) (in-package #:kmrcl-system) #+(or allegro cmucl lispworks sbcl scl) (push :kmr-mop cl:*features*) (defsystem kmrcl :name "kmrcl" :author "Kevin M. Rosenberg " :version "1.31+" :maintainer "Kevin M. Rosenberg " :licence "LLGPL" :components ((:file "package") (:file "console" :depends-on ("package")) (:file "genutils" :depends-on ("package")) (:file "strings" :depends-on ("package")) (:file "equal" :depends-on ("package")) (:file "buff-input" :depends-on ("genutils")) (:file "telnet-server" :depends-on ("genutils")) (:file "random" :depends-on ("package")) (:file "cl-symbols" :depends-on ("package")) (:file "datetime" :depends-on ("package")) (:file "math" :depends-on ("package")) #+kmr-mop (:file "mop" :depends-on ("package")) #+kmr-mop (:file "attrib-class" :depends-on ("package")) (:file "web-utils" :depends-on ("package")) (:file "xml-utils" :depends-on ("package"))) ) #+(or allegro lispworks sbcl cmu scl) (defmethod perform ((o test-op) (c (eql (find-system :kmrcl)))) (oos 'load-op 'kmrcl-tests) (oos 'test-op 'kmrcl-tests))