1999-04-01 03:18:52 -05:00
|
|
|
#! /bin/sh
|
|
|
|
|
2000-02-04 16:42:00 -05:00
|
|
|
# Copyright (C) 1999, 2000 Free Software Foundation, Inc.
|
|
|
|
# This file is part of GNU CC.
|
|
|
|
|
|
|
|
# GNU CC is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
|
|
|
|
# GNU CC is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GNU CC; see the file COPYING. If not, write to
|
|
|
|
# the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
1999-10-25 12:05:08 -04:00
|
|
|
|
1999-04-05 02:58:30 -04:00
|
|
|
SHELL=/bin/sh
|
|
|
|
export SHELL
|
1999-10-25 12:05:08 -04:00
|
|
|
if [ $# -eq 0 ] ; then
|
|
|
|
not_done=false
|
|
|
|
else
|
|
|
|
not_done=true
|
|
|
|
fi
|
|
|
|
|
|
|
|
while $not_done
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-D )
|
|
|
|
shift
|
|
|
|
if [ $# -eq 0 ] ; then
|
|
|
|
not_done=false
|
|
|
|
else
|
|
|
|
AG="$AG -D$1"
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
-D* )
|
|
|
|
AG="$AG $1"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
|
|
|
|
'-?' )
|
|
|
|
echo "USAGE: gendefs [ -D<def-name> ... ] [ <output-name> ]"
|
|
|
|
echo "WHERE: '<def-name>' specifies a #define test name from inclhack.def"
|
2000-02-04 16:42:00 -05:00
|
|
|
echo " and '<output-name>' is one of:"
|
2000-05-08 09:06:47 -04:00
|
|
|
echo " fixincl.x machine.h"
|
2000-02-04 16:42:00 -05:00
|
|
|
echo "The default is to produce the first three outputs."
|
1999-10-25 12:05:08 -04:00
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
|
|
|
|
* )
|
|
|
|
not_done=false
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
1999-04-05 02:58:30 -04:00
|
|
|
|
1999-10-19 09:22:45 -04:00
|
|
|
if [ $# -eq 0 ] ; then
|
2000-05-08 09:06:47 -04:00
|
|
|
set -- fixincl.x
|
1999-10-19 09:22:45 -04:00
|
|
|
fi
|
|
|
|
|
2000-02-04 16:42:00 -05:00
|
|
|
AG="autogen $AG"
|
1999-10-19 09:22:45 -04:00
|
|
|
set -e
|
|
|
|
|
|
|
|
case "$1" in
|
2000-05-05 16:34:12 -04:00
|
|
|
fixincl.x | */fixincl.x )
|
2000-05-08 09:06:47 -04:00
|
|
|
if (${AG} --help > /dev/null 2>&1)
|
2000-02-04 16:42:00 -05:00
|
|
|
then
|
|
|
|
echo AutoGen-ing fixincl.x
|
2000-05-12 17:59:39 -04:00
|
|
|
$AG inclhack.def
|
2000-02-04 16:42:00 -05:00
|
|
|
else
|
|
|
|
echo "AutoGen does not appear to be correctly installed."
|
|
|
|
echo "Please download and install:"
|
2000-10-22 14:07:07 -04:00
|
|
|
echo " ftp://gcc.gnu.org/pub/gcc/infrastructure/autogen.tar.gz"
|
2000-02-04 16:42:00 -05:00
|
|
|
touch fixincl.x
|
|
|
|
fi
|
1999-10-19 09:22:45 -04:00
|
|
|
;;
|
|
|
|
|
2000-05-05 16:34:12 -04:00
|
|
|
machname.h | */machname.h )
|
2000-02-04 16:42:00 -05:00
|
|
|
# This script extracts from the specs file all the predefined macros
|
|
|
|
# that are not in the C89 reserved namespace (the reserved namespace
|
|
|
|
# is all identifiers beginnning with two underscores or one underscore
|
|
|
|
# followed by a capital letter). The specs file is on standard input.
|
|
|
|
# A #define for a regular expression to find any of those macros in a
|
|
|
|
# header file is written to standard output.
|
|
|
|
|
|
|
|
# Note dependency on ASCII. \040 = space, \011 = tab, \012 = newline.
|
|
|
|
# tr ' ' '\n' is, alas, not portable.
|
|
|
|
|
|
|
|
tr -s '\040\011' '\012\012' < ../specs |
|
|
|
|
sed -n 's/^.*-D\([a-zA-Z_][a-zA-Z0-9_]*\).*$/\1/p' |
|
|
|
|
sort -u > mn.T
|
|
|
|
|
|
|
|
if grep -v '^_[_A-Z]' mn.T > mn.U
|
|
|
|
then
|
|
|
|
echo "Forbidden identifiers: `tr '\012' ' ' <mn.U`" >&2
|
|
|
|
sed 's/^/\\\\</; s/$/\\\\>/' <mn.U | tr '\012' '|' > mn.V
|
|
|
|
echo '' >>mn.V
|
|
|
|
sed 's/^/#define MN_NAME_PAT "/; s/|$/"/' < mn.V > machname.T
|
|
|
|
else
|
|
|
|
echo "No forbidden identifiers defined by this target" >&2
|
|
|
|
echo '#undef MN_NAME_PAT' > machname.T
|
|
|
|
fi
|
|
|
|
rm -f mn.[TUV]
|
|
|
|
mv -f machname.T machname.h
|
1999-10-19 09:22:45 -04:00
|
|
|
;;
|
|
|
|
|
|
|
|
* )
|
|
|
|
echo genfixes cannot create $1
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|