X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=kmrcl.asd;h=6216a7162a991b82cf8fcf36301e0a126a1497af;hp=40ab8118ef6b00336922c0ea1a8aef217aa22c32;hb=6e84de6e7bff9079d0b6ba62a3c85d2eb98f2eb4;hpb=0f12822c9d49849c26424743b3744d26056be4cc diff --git a/kmrcl.asd b/kmrcl.asd index 40ab811..6216a71 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: kmrcl.asd,v 1.34 2003/06/18 17:12:29 kevin Exp $ +;;;; $Id: kmrcl.asd,v 1.40 2003/07/11 06:58:32 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 @@ -32,6 +32,7 @@ :components ((:file "package") + (:file "ifstar" :depends-on ("package")) (:file "macros" :depends-on ("package")) (:file "functions" :depends-on ("macros")) (:file "lists" :depends-on ("macros")) @@ -40,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")) @@ -49,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 "repl" :depends-on ("listener" "strings")) + )) -#+(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))