3 # Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
4 # This file is part of GNU CC.
6 # GNU CC is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
11 # GNU CC is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU CC; see the file COPYING. If not, write to
18 # the Free Software Foundation, 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
23 if [ $# -eq 0 ] ; then
34 if [ $# -eq 0 ] ; then
48 echo "USAGE: gendefs [ -D<def-name> ... ] [ <output-name> ]"
49 echo "WHERE: '<def-name>' specifies a #define test name from inclhack.def"
50 echo " and '<output-name>' is one of:"
51 echo " fixincl.x machine.h"
52 echo "The default is to produce the first three outputs."
62 if [ $# -eq 0 ] ; then
70 fixincl.x |
*/fixincl.x
)
71 if [ -z "`${AG} -v | fgrep 'Ver. 5.'`" ]
73 echo "AutoGen appears to be out of date or not correctly installed."
74 echo "Please download and install:"
75 echo " ftp://gcc.gnu.org/pub/gcc/infrastructure/autogen.tar.gz"
78 echo AutoGen-ing fixincl.x
83 machname.h |
*/machname.h
)
84 # This script extracts from the specs file all the predefined macros
85 # that are not in the C89 reserved namespace (the reserved namespace
86 # is all identifiers beginnning with two underscores or one underscore
87 # followed by a capital letter). The specs file is on standard input.
88 # A #define for a regular expression to find any of those macros in a
89 # header file is written to standard output.
91 # Note dependency on ASCII. \040 = space, \011 = tab, \012 = newline.
92 # tr ' ' '\n' is, alas, not portable.
94 tr -s '\040\011' '\012\012' < ..
/specs |
95 sed -n 's/^.*-D\([a-zA-Z_][a-zA-Z0-9_]*\).*$/\1/p' |
98 if grep -v '^_[_A-Z]' mn.T
> mn.U
100 echo "Forbidden identifiers: `tr '\012' ' ' <mn.U`" >&2
101 sed 's/^/\\\\</; s/$/\\\\>/' <mn.U |
tr '\012' '|' > mn.V
103 sed 's/^/#define MN_NAME_PAT "/; s/|$/"/' < mn.V
> machname.T
105 echo "No forbidden identifiers defined by this target" >&2
106 echo '#undef MN_NAME_PAT' > machname.T
109 mv -f machname.T machname.h
113 echo genfixes cannot create
$1