home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / cref / cref.pkg < prev    next >
Text File  |  1999-01-02  |  2KB  |  66 lines

  1. #| -*-Scheme-*-
  2.  
  3. $Id: cref.pkg,v 1.7 1999/01/02 06:11:34 cph Exp $
  4.  
  5. Copyright (c) 1988-1999 Massachusetts Institute of Technology
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or (at
  10. your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. |#
  21.  
  22. ;;;; CREF Packaging
  23.  
  24. (global-definitions "../runtime/runtime")
  25.  
  26. (define-package (cross-reference)
  27.   (files "mset"
  28.      "object"
  29.      "toplev")
  30.   (parent ())
  31.   (export ()
  32.       cref/generate-all
  33.       cref/generate-constructors
  34.       cref/generate-cref
  35.       cref/generate-cref-unusual
  36.       cref/generate-trivial-constructor))
  37.  
  38. (define-package (cross-reference analyze-file)
  39.   (files "anfile")
  40.   (parent (cross-reference))
  41.   (export (cross-reference)
  42.       analyze-file))
  43.  
  44. (define-package (cross-reference constructor)
  45.   (files "conpkg")
  46.   (parent (cross-reference))
  47.   (export (cross-reference)
  48.       construct-constructor
  49.       construct-loader))
  50.  
  51. (define-package (cross-reference formatter)
  52.   (files "forpkg")
  53.   (parent (cross-reference))
  54.   (export (cross-reference)
  55.       format-packages
  56.       format-packages-unusual)
  57.   (import (runtime scode)
  58.       symbol-name))
  59.  
  60. (define-package (cross-reference reader)
  61.   (files "redpkg")
  62.   (parent (cross-reference))
  63.   (export (cross-reference)
  64.       read-file-analyses!
  65.       read-package-model
  66.       resolve-references!))