X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=kmrcl.asd;h=29d0060ff555a91035427babb9575937e6627dd9;hp=607233c76103ecb5132841a7384c479a75076cc6;hb=7a31a7ff629ae760d9c3e3abedf6e03605f83f23;hpb=4ff29163b47297935f50ad17f2bf908567beee9e diff --git a/kmrcl.asd b/kmrcl.asd index 607233c..29d0060 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: kmrcl.asd,v 1.32 2003/06/17 06:18:09 kevin Exp $ +;;;; $Id: kmrcl.asd,v 1.38 2003/07/08 16:11: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 @@ -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")) @@ -49,11 +50,14 @@ #+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")) + )) -#+(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))