home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacHaskell 2.2 / backend / backend.scm next >
Encoding:
Text File  |  1994-09-27  |  485 b   |  22 lines  |  [TEXT/CCL2]

  1. ;;; backend.scm -- compilation unit for code generator stuff
  2. ;;;
  3. ;;; author :  Sandra Loosemore
  4. ;;; date   :  13 May 1992
  5. ;;;
  6.  
  7.  
  8. (define-compilation-unit backend
  9.   (source-filename "$Y2/backend/")
  10.   (require flic)
  11.   (unit optimize
  12.     (source-filename "optimize.scm"))
  13.   (unit strictness
  14.     (source-filename "strictness.scm"))
  15.   (unit box
  16.     (source-filename "box.scm"))
  17.   (unit codegen
  18.     (source-filename "codegen.scm"))
  19.   (unit interface-codegen
  20.     (source-filename "interface-codegen.scm")))
  21.  
  22.