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 NOTARGETGO32V2}
  46. ,t_go32v2
  47. {$endif}
  48. {$ifndef NOTARGETBEOS}
  49. ,t_beos
  50. {$endif}
  51. {**************************************
  52. Assemblers
  53. **************************************}
  54. {$ifndef NOAG386ATT}
  55. ,ag386att
  56. {$endif}
  57. {$ifndef NOAG386NSM}
  58. ,ag386nsm
  59. {$endif}
  60. {$ifndef NOAG386INT}
  61. ,ag386int
  62. {$endif}
  63. ,ogcoff
  64. ,ogelf
  65. ;
  66. end.
  67. {
  68. $Log$
  69. Revision 1.3 2002-03-28 20:48:04 carl
  70. - remove go32v1 support
  71. Revision 1.2 2001/06/03 15:12:47 peter
  72. * t_beos target inclusion
  73. Revision 1.1 2001/04/18 22:02:01 peter
  74. * registration of targets and assemblers
  75. }