r5246: *** empty log message ***
[kmrcl.git] / kmrcl.asd
index 947b33aa6e9454a4b3746927ba3870bcdd108e18..90afbe68a30791f1d25ef5a4599214ce79158006 100644 (file)
--- a/kmrcl.asd
+++ b/kmrcl.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: kmrcl.asd,v 1.29 2003/04/29 04:56:58 kevin Exp $
+;;;; $Id: kmrcl.asd,v 1.37 2003/06/25 20:28:08 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
+(in-package #:cl-user)
 (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
 
     :components 
     ((:file "package")
+     (:file "ifstar" :depends-on ("package"))
      (:file "macros" :depends-on ("package"))
      (:file "functions" :depends-on ("macros"))
      (:file "lists" :depends-on ("macros"))
      (:file "seqs" :depends-on ("macros"))
      (:file "io" :depends-on ("macros"))
      (:file "console" :depends-on ("macros"))
-     (:file "strings" :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"))
      #+kmr-mop (:file "mop" :depends-on ("macros"))
      #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop"))
      (:file "equal" :depends-on ("macros" #+kmr-mop "mop"))
-     (:file "web-utils" :depends-on ("macros"))
+     (:file "web-utils" :depends-on ("macros" "strings"))
      (:file "xml-utils" :depends-on ("macros")))
     )
 
-#+(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))
+(defmethod perform ((o test-op) (c (eql (find-system 'kmrcl))))
+  (operate 'load-op 'kmrcl-tests)
+  (operate 'test-op 'kmrcl-tests))