r3516: *** empty log message ***
[hyperobject.git] / hyperobject.asd
index b75e9a78221c7ba413e43f231c026fa720705272..e26fe0e11cc44d6b7cff165b0baa7a3a24bd653b 100644 (file)
@@ -7,26 +7,23 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: hyperobject.asd,v 1.2 2002/11/03 20:10:48 kevin Exp $
+;;;; $Id: hyperobject.asd,v 1.9 2002/11/29 04:07:52 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;; *************************************************************************
 
 (in-package :asdf)
 
-#+(or allegro lispworks cmu sbcl scl)
+#+(or allegro lispworks sbcl cmu scl)
 (defsystem :hyperobject
     :perform (load-op :after (op hyperobject)
                      (pushnew :hyperobject cl:*features*))
     :components 
     ((:file "package")
-     (:file "hyperobject" :depends-on ("package")))
-    :depends-on (:kmrcl))
+     (:file "mop" :depends-on ("package"))
+     (:file "views" :depends-on ("mop"))
+     (:file "base-class" :depends-on ("views"))
+     )
+     :depends-on (:kmrcl))
 
 
-#+(or allegro lispworks cmu sbcl scl)
-(when (ignore-errors (find-class 'load-compiled-op))
-  (defmethod perform :after ((op load-compiled-op)
-                            (c (eql (find-system :hyperobject))))
-    (pushnew :hyperobject cl:*features*)))
-