cputarg.pas 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. $Id$
  3. Copyright (c) 2001 by Peter Vreman
  4. Includes the i386 dependent target units
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit cputarg;
  19. {$i defines.inc}
  20. interface
  21. implementation
  22. uses
  23. systems { prevent a syntax error when nothing is included }
  24. {**************************************
  25. Targets
  26. **************************************}
  27. {$ifndef NOTARGETLINUX}
  28. ,t_linux
  29. {$endif}
  30. {$ifndef NOTARGETFREEBSD}
  31. ,t_fbsd
  32. {$endif}
  33. {$ifndef NOTARGETSUNOS}
  34. ,t_sunos
  35. {$endif}
  36. {$ifndef NOTARGETOS2}
  37. ,t_os2
  38. {$endif}
  39. {$ifndef NOTARGETWIN32}
  40. ,t_win32
  41. {$endif}
  42. {$ifndef NOTARGETNETWARE}
  43. ,t_nwm
  44. {$endif}
  45. {$ifndef NOTARGETGO32V1}
  46. ,t_go32v1
  47. {$endif}
  48. {$ifndef NOTARGETGO32V2}
  49. ,t_go32v2
  50. {$endif}
  51. {$ifndef NOTARGETBEOS}
  52. ,t_beos
  53. {$endif}
  54. {**************************************
  55. Assemblers
  56. **************************************}
  57. {$ifndef NOAG386ATT}
  58. ,ag386att
  59. {$endif}
  60. {$ifndef NOAG386NSM}
  61. ,ag386nsm
  62. {$endif}
  63. {$ifndef NOAG386INT}
  64. ,ag386int
  65. {$endif}
  66. ,ogcoff
  67. ,ogelf
  68. ;
  69. end.
  70. {
  71. $Log$
  72. Revision 1.2 2001-06-03 15:12:47 peter
  73. * t_beos target inclusion
  74. Revision 1.1 2001/04/18 22:02:01 peter
  75. * registration of targets and assemblers
  76. }