1 /* aoutos.h -- operating system specific defines to be used when 2 targeting GCC for some system that uses a.out file format. 3 Copyright (C) 1992 Free Software Foundation, Inc. 4 5 Written by Ron Guilmette (rfg@netcom.com). 6 7 This file is part of GNU CC. 8 9 GNU CC is free software; you can redistribute it and/or modify 10 it under the terms of the GNU General Public License as published by 11 the Free Software Foundation; either version 2, or (at your option) 12 any later version. 13 14 GNU CC is distributed in the hope that it will be useful, 15 but WITHOUT ANY WARRANTY; without even the implied warranty of 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 GNU General Public License for more details. 18 19 You should have received a copy of the GNU General Public License 20 along with GNU CC; see the file COPYING. If not, write to 21 the Free Software Foundation, 59 Temple Place - Suite 330, 22 Boston, MA 02111-1307, USA. */ 23 24 /* To use this file, make up a file with a name like: 25 26 ?????aout.h 27 28 where ????? is replaced by the name of the basic hardware that you 29 are targeting for. Then, in the file ?????aout.h, put something 30 like: 31 32 #include "?????.h" 33 #include "aoutos.h" 34 35 followed by any really system-specific defines (or overrides of 36 defines) which you find that you need. Now, modify the configure 37 or configure.in script to properly use the new ?????aout.h file 38 when configuring for the system. */ 39 40 /* Define a symbol indicating that we are using aoutos.h. */ 41 #define USING_AOUTOS_H 42