summaryrefslogtreecommitdiff
path: root/cfn/cfn.scm
diff options
context:
space:
mode:
authorYale AI Dept <ai@nebula.cs.yale.edu>1993-07-14 13:08:00 -0500
committerDuncan McGreggor <duncan.mcgreggor@rackspace.com>1993-07-14 13:08:00 -0500
commit4e987026148fe65c323afbc93cd560c07bf06b3f (patch)
tree26ae54177389edcbe453d25a00c38c2774e8b7d4 /cfn/cfn.scm
Import to github.
Diffstat (limited to 'cfn/cfn.scm')
-rw-r--r--cfn/cfn.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/cfn/cfn.scm b/cfn/cfn.scm
new file mode 100644
index 0000000..bf43be0
--- /dev/null
+++ b/cfn/cfn.scm
@@ -0,0 +1,21 @@
+;;; cfn.scm -- module definition for CFN phase
+;;;
+;;; author : Sandra Loosemore
+;;; date : 11 Mar 1992
+;;;
+
+
+(define-compilation-unit cfn
+ (source-filename "$Y2/cfn/")
+ (require ast haskell-utils)
+ (unit main
+ (source-filename "main.scm"))
+ (unit misc
+ (source-filename "misc.scm")
+ (require main))
+ (unit pattern
+ (source-filename "pattern.scm")
+ (require main)))
+
+
+