From a9cffac12f45d917ae632f4037991d7ba66091fb Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 30 Aug 2015 10:58:38 +0100 Subject: [PATCH] src/final.lisp: Rename from `debug.lisp'. It's going to get more stuff. --- src/Makefile.am | 4 ++-- src/{debug.lisp => final.lisp} | 5 ++++- src/sod.asd | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) rename src/{debug.lisp => final.lisp} (92%) diff --git a/src/Makefile.am b/src/Makefile.am index 53880d8..c7779f9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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. diff --git a/src/debug.lisp b/src/final.lisp similarity index 92% rename from src/debug.lisp rename to src/final.lisp index af5f104..dd8834f 100644 --- a/src/debug.lisp +++ b/src/final.lisp @@ -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") diff --git a/src/sod.asd b/src/sod.asd index aae3be1..f207df0 100644 --- a/src/sod.asd +++ b/src/sod.asd @@ -164,8 +164,8 @@ (: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. -- 2.11.0