compunit.pas 380 B

1234567891011121314151617181920212223242526
  1. {
  2. $Id$
  3. Build file for the compiler units. This is also a unit so
  4. that there will be no linking
  5. }
  6. unit compunit;
  7. interface
  8. uses
  9. ppheap,
  10. compiler,
  11. comphook,
  12. cpuinfo,
  13. browcol;
  14. implementation
  15. end.
  16. {
  17. $Log$
  18. Revision 1.3 2002-10-30 21:53:05 pierre
  19. * also compile ppheap unit
  20. Revision 1.2 2002/09/07 15:40:51 peter
  21. * old logs removed and tabs fixed
  22. }