home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / PASCAL / TBTREE16.ZIP / BUILDTPU.PAS < prev    next >
Pascal/Delphi Source File  |  1989-06-27  |  1KB  |  44 lines

  1.  
  2. program BuildTPU;
  3.  
  4. (*****************************************************************************)
  5. (*                                                                           *)
  6. (*                  B U I L D   T P U   P R O G R A M                        *)
  7. (*                                                                           *)
  8. (*****************************************************************************)
  9.  
  10. (* This program is nothing more than all one uses statement which, when
  11.    compiled, will compile all the necessary files to create all TPUs for
  12.    TBTREE.  This is convenient if you want to create all TPUs at once
  13.    for subsequent movement to a different directory or whatever.
  14.  
  15.    The only drawback is that is does compile and will therefore create a
  16.    useless executable file (driver0.exe).  This should be deleted as it
  17.    does nothing useful.                                                      *)
  18.  
  19. uses
  20.     btree,
  21.     bytedata,
  22.     compare,
  23.     error,
  24.     fastmove,
  25.     filebuff,
  26.     filedecs,
  27.     files,
  28.     hex,
  29.     logical,
  30.     lreclist,
  31.     math,
  32.     myprint,
  33.     numbers,
  34.     page,
  35.     setops,
  36.     sort,
  37.     strings,
  38.     time,
  39.     vlogical;
  40.  
  41. begin
  42.  
  43. end.
  44.