home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / exml.lha / exml / examples / ebook / Ace.ace next >
Text File  |  1999-04-13  |  2KB  |  65 lines

  1. system
  2.     ebook
  3.  
  4. root
  5.     EBOOK (root_cluster): "make"
  6.  
  7. default
  8.     assertion (all);
  9.     console_application (yes);
  10.     precompiled ("$EIFFEL4\precomp\spec\$PLATFORM\base");
  11.     
  12. cluster
  13.     
  14.     root_cluster: "$EXML\examples\ebook";
  15.     HTML: "$EXML\examples\ebook\html";
  16.  
  17.  
  18.     -- eXML
  19.     eXML: "$EXML\main";
  20.     eXML_tree_parser: "$EXML\main\tree_parser";
  21.     eXML_ise: "$EXML\compiler_specific\ise";
  22.  
  23.         -- EiffelBase
  24.     base:                        "$EIFFEL4\library\base";
  25.     structures(base):            "$\structures";
  26.     
  27.     kernel(base):                "$\kernel";
  28.     support(base):                "$\support";
  29.     access(structures):            "$\access";
  30.     cursors(structures):        "$\cursors";
  31.     cursor_tree(structures):    "$\cursor_tree";
  32.     dispenser(structures):        "$\dispenser";
  33.     iteration(structures):        "$\iteration";
  34.     list(structures):            "$\list";
  35.     set(structures):            "$\set";
  36.     sort(structures):            "$\sort";
  37.     storage(structures):        "$\storage";
  38.     table(structures):            "$\table";
  39.     traversing(structures):        "$\traversing";
  40.     tree(structures):            "$\tree";
  41.  
  42.         -- Gobo Eiffel Kernel Library
  43.     kl_kernel:            "$GOBO\library\kernel";
  44.     kl_kernel_spec:        "$GOBO\library\kernel\spec\ise";
  45.  
  46.         -- Gobo Eiffel Structure Library
  47.     ds_container:        "$GOBO\library\structure\container";
  48.     ds_cursor:            "$GOBO\library\structure\cursor";
  49.     ds_list:            "$GOBO\library\structure\list";
  50.     ds_search:            "$GOBO\library\structure\search";
  51.     ds_sort:            "$GOBO\library\structure\sort";
  52.     ds_stack:            "$GOBO\library\structure\stack";
  53.     ds_support:            "$GOBO\library\structure\support";
  54.     ds_table:            "$GOBO\library\structure\table";
  55.  
  56.     gobo_ext:            "$EXML\examples\ebook\gobo_ext";
  57.  
  58. external
  59.     include_path:        "$EXML\expat\xmlparse",
  60.                             "$EXML\compiler_specific\ise\clib";
  61.     object:                "$EXML\compiler_specific\ise\clib\msc\exml.lib",
  62.                             "$EXML\expat\lib\xmlparse.lib";
  63.  
  64. end
  65.