X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=kmrcl.asd;h=34bde481ff039a7075b01ac2ef74ff1edecd6562;hb=16c5d5dd00d414686c34c7fdca5f5acb7c9dfdd5;hp=4351f112507f9b7f4b866d29b636bd701036c677;hpb=7c7e6a18fd67e5370fd78690da2642cbe79e4113;p=kmrcl.git diff --git a/kmrcl.asd b/kmrcl.asd index 4351f11..34bde48 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: kmrcl.asd,v 1.35 2003/06/20 08:35:21 kevin Exp $ +;;;; $Id: kmrcl.asd,v 1.39 2003/07/09 19:19:19 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -20,7 +20,7 @@ (defpackage #:kmrcl-system (:use #:asdf #:cl)) (in-package #:kmrcl-system) -#+(or allegro cmu lispworks sbcl scl) +#+(or allegro cmu lispworks sbcl scl openmcl) (pushnew :kmr-mop cl:*features*) (defsystem kmrcl @@ -41,7 +41,6 @@ (:file "console" :depends-on ("macros")) (:file "strings" :depends-on ("macros" "seqs")) (:file "buff-input" :depends-on ("macros")) - (:file "telnet-server" :depends-on ("macros")) (:file "random" :depends-on ("macros")) (:file "symbols" :depends-on ("macros")) (:file "datetime" :depends-on ("macros")) @@ -50,11 +49,15 @@ #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop")) (:file "equal" :depends-on ("macros" #+kmr-mop "mop")) (:file "web-utils" :depends-on ("macros" "strings")) - (:file "xml-utils" :depends-on ("macros"))) - ) + (:file "xml-utils" :depends-on ("macros")) + (:file "sockets" :depends-on ("macros")) + (:file "processes" :depends-on ("macros")) + (:file "listener" :depends-on ("sockets" "processes")) + (:file "telnet-server" :depends-on ("listener")) + )) -#+(or allegro lispworks sbcl cmu scl) -(defmethod perform ((o test-op) (c (eql (find-system :kmrcl)))) + +(defmethod perform ((o test-op) (c (eql (find-system 'kmrcl)))) (operate 'load-op 'kmrcl-tests) (operate 'test-op 'kmrcl-tests))