src/final.lisp: Rename from `debug.lisp'.
[sod] / src / sod.asd
index 3de24eb..f207df0 100644 (file)
@@ -34,7 +34,7 @@
 (defsystem sod
 
   ;; Boring copyright stuff.
-  :version "0.1.0"
+  :version "0.2.0"
   :author "Mark Wooding"
   :license "GNU General Public License, version 2 or later"
 
    ;; Method generation.
    (:file "method-proto" :depends-on ("class-make-proto"))
    (:file "method-impl" :depends-on ("method-proto"))
+   (:file "method-aggregate" :depends-on ("method-impl"))
 
    ;; Class output.
    (:file "class-output" :depends-on
          ("classes" "class-layout-impl" "method-impl" "output-proto"))
 
-   ;; Debugging and interactive testing.
-   (:file "debug" :depends-on ("builtin" "module-output"))))
+   ;; Finishing touches of various kinds.
+   (:file "final" :depends-on ("builtin" "module-output"))))
 
 ;;;--------------------------------------------------------------------------
 ;;; Testing.