src/final.lisp: Rename from `debug.lisp'.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 30 Aug 2015 09:58:38 +0000 (10:58 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 12 Sep 2015 21:47:27 +0000 (22:47 +0100)
It's going to get more stuff.

src/Makefile.am
src/final.lisp [moved from src/debug.lisp with 92% similarity]
src/sod.asd

index 53880d8..c7779f9 100644 (file)
@@ -90,8 +90,8 @@ LISP_SOURCES          += method-aggregate.lisp
 LISP_SOURCES           += sod-frontend.asd
 LISP_SOURCES           += frontend.lisp optparse.lisp
 
-## Interactive testing.
-LISP_SOURCES           += debug.lisp
+## Finishing touches.
+LISP_SOURCES           += final.lisp
 
 ###--------------------------------------------------------------------------
 ### Constructing an output image.
similarity index 92%
rename from src/debug.lisp
rename to src/final.lisp
index af5f104..dd8834f 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-lisp-*-
 ;;;
-;;; Debugging utilities for Sod
+;;; Finishing touches for Sod
 ;;;
 ;;; (c) 2015 Straylight/Edgeware
 ;;;
@@ -25,6 +25,9 @@
 
 (cl:in-package #:sod)
 
+;;;--------------------------------------------------------------------------
+;;; Debugging utilities.
+
 (export '*debugout-pathname*)
 (defvar *debugout-pathname* #p"debugout.c")
 
index aae3be1..f207df0 100644 (file)
    (: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.