summaryrefslogtreecommitdiff
path: root/backend/backend.scm
diff options
context:
space:
mode:
Diffstat (limited to 'backend/backend.scm')
-rw-r--r--backend/backend.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/backend/backend.scm b/backend/backend.scm
new file mode 100644
index 0000000..b370ea7
--- /dev/null
+++ b/backend/backend.scm
@@ -0,0 +1,21 @@
+;;; backend.scm -- compilation unit for code generator stuff
+;;;
+;;; author : Sandra Loosemore
+;;; date : 13 May 1992
+;;;
+
+
+(define-compilation-unit backend
+ (source-filename "$Y2/backend/")
+ (require flic)
+ (unit optimize
+ (source-filename "optimize.scm"))
+ (unit strictness
+ (source-filename "strictness.scm"))
+ (unit box
+ (source-filename "box.scm"))
+ (unit codegen
+ (source-filename "codegen.scm"))
+ (unit interface-codegen
+ (source-filename "interface-codegen.scm")))
+