X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=kmrcl.asd;h=e53ba6a59636fe61f6d05a471e22fb84d373ebd8;hp=a90e20690be985fdb7ab77b18eb4076d7cdc2ec9;hb=3ca593ad0ad02da7ebfd270523795674d6458ad3;hpb=3884e25c65417de34331b45a7b68d479dde15949 diff --git a/kmrcl.asd b/kmrcl.asd index a90e206..e53ba6a 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; KMRCL users are granted the rights to distribute and use this software @@ -20,7 +18,7 @@ (defpackage #:kmrcl-system (:use #:asdf #:cl)) (in-package #:kmrcl-system) -#+(or allegro cmu lispworks sbcl scl openmcl) +#+(or allegro cmu clisp lispworks sbcl scl openmcl) (pushnew :kmr-mop cl:*features*) (defsystem kmrcl @@ -29,7 +27,7 @@ :maintainer "Kevin M. Rosenberg " :licence "LLGPL" :depends-on (#+sbcl sb-posix) - :components + :components ((:file "package") (:file "ifstar" :depends-on ("package")) (:file "byte-stream" :depends-on ("package")) @@ -37,7 +35,7 @@ (:file "functions" :depends-on ("macros")) (:file "lists" :depends-on ("macros")) (:file "seqs" :depends-on ("macros")) - (:file "impl" :depends-on ("macros")) + (:file "impl" :depends-on ("macros")) (:file "io" :depends-on ("macros" "impl")) (:file "console" :depends-on ("macros")) (:file "strings" :depends-on ("macros" "seqs")) @@ -58,6 +56,9 @@ (:file "listener" :depends-on ("sockets" "processes" "console")) (:file "repl" :depends-on ("listener" "strings")) (:file "os" :depends-on ("macros" "impl")) + (:file "signals" :depends-on ("package")) + (:file "btree" :depends-on ("macros")) + (:file "hash" :depends-on ("macros")) )) (defmethod perform ((o test-op) (c (eql (find-system 'kmrcl))))