old-cross-binutils/gas/.Sanitize

558 lines
13 KiB
Text
Raw Normal View History

1998-04-22 16:18:07 +00:00
# .Sanitize for devo/gas
1991-05-23 17:18:12 +00:00
1994-01-04 21:18:15 +00:00
# Each directory to survive its way into a release will need a file
1991-05-23 17:18:12 +00:00
# like this one called "./.Sanitize". All keyword lines must exist,
# and must exist in the order specified by this file. Each directory
# in the tree will be processed, top down, in the following order.
# Hash started lines like this one are comments and will be deleted
# before anything else is done. Blank lines will also be squashed
# out.
# The lines between the "Do-first:" line and the "Things-to-keep:"
# line are executed as a /bin/sh shell script before anything else is
# done in this directory.
1991-05-23 17:18:12 +00:00
Do-first:
lose_these_too=""
for d in obsolete regress regress.m68k testscripts ; do
if [ -d $d ]; then
lose_these_too="${lose_these_too} $d"
fi
done
1998-08-20 21:58:15 +00:00
# Remember the current list of files in config.
if test -d config; then
gas_config_files=`cd config; echo *`
else
gas_config_files=
fi
1991-05-23 17:18:12 +00:00
# All files listed between the "Things-to-keep:" line and the
1998-04-22 16:18:07 +00:00
# "Do-last:" line will be kept. All other files will be removed.
1991-05-23 17:18:12 +00:00
# Directories listed in this section will have their own Sanitize
# called. Directories not listed will be removed in their entirety
# with rm -rf.
Things-to-keep:
1992-12-08 08:05:32 +00:00
CONTRIBUTORS
1991-05-23 17:18:12 +00:00
COPYING
ChangeLog
1998-07-06 22:27:28 +00:00
ChangeLog-9295
ChangeLog-9697
Makefile.am
1991-05-23 17:18:12 +00:00
Makefile.in
1992-12-08 08:05:32 +00:00
NEWS
1991-05-23 17:18:12 +00:00
README
1992-12-08 08:05:32 +00:00
README-vms
1994-08-28 20:07:16 +00:00
acconfig.h
acinclude.m4
1994-08-28 20:07:16 +00:00
aclocal.m4
1991-05-23 17:18:12 +00:00
app.c
as.c
as.h
1998-04-22 16:18:07 +00:00
asintl.h
1991-05-23 17:18:12 +00:00
atof-generic.c
bignum-copy.c
bignum.h
1992-12-08 08:05:32 +00:00
bit_fix.h
cgen.c
cgen.h
1991-05-23 17:18:12 +00:00
cond.c
config
config-gas.com
1998-04-22 16:18:07 +00:00
config.in
1994-08-28 20:07:16 +00:00
configure
configure.bat
1991-05-23 17:18:12 +00:00
configure.in
debug.c
dep-in.sed
1997-05-23 20:15:59 +00:00
depend.c
doc
ecoff.c
ecoff.h
ehopt.c
1995-05-12 00:04:35 +00:00
emul-target.h
emul.h
1991-05-23 17:18:12 +00:00
expr.c
expr.h
flonum-copy.c
1992-12-08 08:05:32 +00:00
flonum-konst.c
1991-05-23 17:18:12 +00:00
flonum-mult.c
flonum.h
frags.c
frags.h
1994-01-31 16:44:53 +00:00
gasp.c
1994-09-19 16:49:38 +00:00
gdbinit.in
1991-05-23 17:18:12 +00:00
hash.c
hash.h
input-file.c
input-file.h
input-scrub.c
itbl-lex.l
itbl-ops.c
itbl-ops.h
itbl-parse.y
1998-04-22 16:18:07 +00:00
link.cmd
listing.c
listing.h
literal.c
1995-09-29 02:38:28 +00:00
mac-as.r
Add support for macros. * as.c: Include sb.h and macro.h. (max_macro_next): New global variable. (main): Call macro_init. (macro_expr): New static function. * as.h (max_macro_nest): Declare. * read.c (line_label): Rename from mri_line_label. Change all uses. (potable): Add exitm, irp, irpc, macro, mexit, rept. (read_a_source_file): Always clear line_label at the start of a line, not just when flag_mri or LABELS_WITHOUT_COLONS. Fixup MRI/LABELS_WITHOUT_COLONS handling. In MRI mode, permit label: equ val. Set line_label when calling colon. In MRI mode, a leading '.' does not imply a pseudo-op. Check for macro expansion before calling md_assemble. (s_irp): New function. (get_line_sb): New static function. (s_macro): New function. (s_mexit): New function. (s_rept): New function. * read.h (line_label): Rename from mri_line_label. (s_irp, s_rept): Declare. (s_macro, s_mexit): Declare. * input-scrub.c: Include sb.h. (sb_index, from_sb): New static variables. (macro_nest): New static variable. (struct input_save): Add sb_index and from_sb fields. Change next_saved_file field to be struct input_save *. (next_saved_file): Changed to be struct input_save *. (input_scrub_push): Change to return type struct input_save *. Save sb_index and from_sb. (input_scrub_pop): Change parameter type to struct input_save *. Restore sb_index and from_sb. (input_scrub_include_sb): New function. (input_scrub_next_buffer): Handle reading from from_sb. (bump_line_counters): Only increment lines if not using from_sb. * config/tc-m68k.c (opt_table): Add nest. (opt_nest): New static function. * gasp.c: Include sb.h and macro.h. Move all sb related functions and definitions to sb.h and sb.c. Move all macro related functions and definitions to macro.h and macro.c. * sb.h, sb.c: New files, extracted from gasp.c. * macro.h, macro.c: Likewise. * Makefile.in (OBJS): Add sb.o and macro.o (GASPOBJS): Define. (gasp.new): Depend upon $(GASPOBJS). Use $(GASPOBJS) to link. (TARG_CPU_DEP_m68k): Depend upon subsegs.h. (gasp.o): Depend upon sb.h and macro.h. (sb.o): New target. (macro.o): New target. (as.o): Depend upon sb.h and macro.h. (input-scrub.o): Depend upon sb.h. (read.o): Depend upon sb.h and macro.h.
1995-08-21 18:35:11 +00:00
macro.c
macro.h
makefile.vms
1991-05-23 17:18:12 +00:00
messages.c
1995-04-12 19:29:34 +00:00
mpw-config.in
1995-09-29 02:38:28 +00:00
mpw-make.sed
1991-05-23 17:18:12 +00:00
obj.h
output-file.c
output-file.h
1998-04-22 16:18:07 +00:00
po
1991-05-23 17:18:12 +00:00
read.c
read.h
Add support for macros. * as.c: Include sb.h and macro.h. (max_macro_next): New global variable. (main): Call macro_init. (macro_expr): New static function. * as.h (max_macro_nest): Declare. * read.c (line_label): Rename from mri_line_label. Change all uses. (potable): Add exitm, irp, irpc, macro, mexit, rept. (read_a_source_file): Always clear line_label at the start of a line, not just when flag_mri or LABELS_WITHOUT_COLONS. Fixup MRI/LABELS_WITHOUT_COLONS handling. In MRI mode, permit label: equ val. Set line_label when calling colon. In MRI mode, a leading '.' does not imply a pseudo-op. Check for macro expansion before calling md_assemble. (s_irp): New function. (get_line_sb): New static function. (s_macro): New function. (s_mexit): New function. (s_rept): New function. * read.h (line_label): Rename from mri_line_label. (s_irp, s_rept): Declare. (s_macro, s_mexit): Declare. * input-scrub.c: Include sb.h. (sb_index, from_sb): New static variables. (macro_nest): New static variable. (struct input_save): Add sb_index and from_sb fields. Change next_saved_file field to be struct input_save *. (next_saved_file): Changed to be struct input_save *. (input_scrub_push): Change to return type struct input_save *. Save sb_index and from_sb. (input_scrub_pop): Change parameter type to struct input_save *. Restore sb_index and from_sb. (input_scrub_include_sb): New function. (input_scrub_next_buffer): Handle reading from from_sb. (bump_line_counters): Only increment lines if not using from_sb. * config/tc-m68k.c (opt_table): Add nest. (opt_nest): New static function. * gasp.c: Include sb.h and macro.h. Move all sb related functions and definitions to sb.h and sb.c. Move all macro related functions and definitions to macro.h and macro.c. * sb.h, sb.c: New files, extracted from gasp.c. * macro.h, macro.c: Likewise. * Makefile.in (OBJS): Add sb.o and macro.o (GASPOBJS): Define. (gasp.new): Depend upon $(GASPOBJS). Use $(GASPOBJS) to link. (TARG_CPU_DEP_m68k): Depend upon subsegs.h. (gasp.o): Depend upon sb.h and macro.h. (sb.o): New target. (macro.o): New target. (as.o): Depend upon sb.h and macro.h. (input-scrub.o): Depend upon sb.h. (read.o): Depend upon sb.h and macro.h.
1995-08-21 18:35:11 +00:00
sb.c
sb.h
1993-11-22 06:04:32 +00:00
stabs.c
stamp-h.in
1991-05-23 17:18:12 +00:00
struc-symbol.h
subsegs.c
subsegs.h
symbols.c
symbols.h
tc.h
1993-03-29 13:27:13 +00:00
testsuite
1994-03-15 03:35:59 +00:00
vmsconf.sh
1991-05-23 17:18:12 +00:00
write.c
write.h
1993-05-27 06:44:29 +00:00
Things-to-lose:
1998-04-22 16:18:07 +00:00
# The lines between the "Do-last:" line and the end of the file
# are executed as a /bin/sh shell script after everything else is
# done.
1991-05-23 17:18:12 +00:00
Do-last:
1998-07-06 22:27:28 +00:00
v850_files="ChangeLog ChangeLog-9697 configure.in configure"
if ( echo $* | grep keep\-v850e > /dev/null ) ; then
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping v850e stuff in $i
fi
fi
done
else
for i in $v850_files ; do
if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"v850e\" from $i...
fi
cp $i new
sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
1997-02-11 13:26:34 +00:00
1998-07-06 22:27:28 +00:00
r5900_files="ChangeLog ChangeLog-9697 configure configure.in"
1997-02-11 13:26:34 +00:00
if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
for i in $r5900_files ; do
if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping r5900 stuff in $i
fi
fi
done
else
for i in $r5900_files ; do
if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"r5900\" from $i...
fi
cp $i new
sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
cygnus_files="ChangeLog ChangeLog-9697"
if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
for i in $cygnus_files ; do
if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping cygnus stuff in $i
fi
fi
done
else
for i in $cygnus_files ; do
if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"cygnus\" from $i...
fi
cp $i new
sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
1998-07-06 22:27:28 +00:00
tx19_files="ChangeLog ChangeLog-9697"
1997-09-10 04:53:18 +00:00
if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
for i in $tx19_files ; do
if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping tx19 stuff in $i
fi
fi
done
else
for i in $tx19_files ; do
if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"tx19\" from $i...
fi
cp $i new
sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
1998-07-06 22:27:28 +00:00
tx49_files="ChangeLog ChangeLog-9697"
1997-10-30 16:38:29 +00:00
if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
for i in $tx49_files ; do
if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping tx49 stuff in $i
fi
fi
done
else
for i in $tx49_files ; do
if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"tx49\" from $i...
fi
cp $i new
sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
1998-07-06 22:27:28 +00:00
tic80_files="ChangeLog ChangeLog-9697 configure.in configure"
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
for i in $tic80_files ; do
if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping tic80 stuff in $i
fi
fi
done
else
for i in $tic80_files ; do
if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"tic80\" from $i...
fi
cp $i new
sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
am33_files="ChangeLog"
if ( echo $* | grep keep\-am33 > /dev/null ) ; then
for i in $am33_files ; do
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping am33 stuff in $i
fi
fi
done
else
for i in $am33_files ; do
if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"am33\" from $i...
fi
cp $i new
sed '/start\-sanitize\-am33/,/end-\sanitize\-am33/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
1998-07-06 22:27:28 +00:00
m32rx_files="ChangeLog ChangeLog-9697 configure.in configure"
1997-12-16 14:54:08 +00:00
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
for i in $m32rx_files ; do
if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping m32rx stuff in $i
fi
fi
done
else
for i in $m32rx_files ; do
if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"m32rx\" from $i...
fi
cp $i new
sed '/start\-sanitize\-m32rx/,/end-\sanitize\-m32rx/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
if ( echo $* | grep keep\-phase2\-m32rx > /dev/null ) ; then
for i in $m32rx_files ; do
if test ! -d $i && (grep sanitize\-phase2\-m32rx $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping m32rx stuff in $i
fi
fi
done
else
for i in $m32rx_files ; do
if test -r $i && (grep sanitize\-phase2\-m32rx $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"m32rx\" from $i...
fi
cp $i new
sed '/start\-sanitize\-phase2\-m32rx/,/end\-sanitize\-phase2\-m32rx/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
1997-12-16 14:54:08 +00:00
sky_files="ChangeLog configure.in configure"
if ( echo $* | grep keep\-sky > /dev/null ) ; then
for i in $sky_files ; do
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping sky stuff in $i
fi
fi
done
else
for i in $sky_files ; do
if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"sky\" from $i...
fi
cp $i new
sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
1998-01-15 18:46:32 +00:00
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
vr4320_files="ChangeLog"
if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
for i in $vr4320_files ; do
if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping vr4320 stuff in $i
fi
fi
done
else
for i in $vr4320_files ; do
if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"vr4320\" from $i...
fi
cp $i new
sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
branchbug4011_files="ChangeLog"
if ( echo $* | grep keep\-branchbug4011 > /dev/null ) ; then
for i in $branchbug4011_files ; do
if test ! -d $i && (grep sanitize-branchbug4011 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping branchbug4011 stuff in $i
fi
fi
done
else
for i in $branchbug4011_files ; do
if test -r $i && (grep sanitize-branchbug4011 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"branchbug4011\" from $i...
fi
cp $i new
sed '/start\-sanitize\-branchbug4011/,/end\-sanitize\-branchbug4011/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
1998-07-14 23:15:20 +00:00
beos_files="ChangeLog configure.in configure"
if ( echo $* | grep keep\-beos > /dev/null ) ; then
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping beos stuff in $i
fi
fi
done
else
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"beos\" from $i...
fi
cp $i new
sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
for i in * ; do
1998-08-20 21:16:39 +00:00
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in gas/$i! 1>&2
fi
done
1998-08-20 21:16:39 +00:00
for lost in .. $lose_these_too; do
if test $lost != ..; then
for i in Makefile.am Makefile.in configure.in configure; do
if fgrep $lost $i >/dev/null 2>&1; then
echo '***' File $lost was sanitized out but is still mentioned in gas/$i 1>&2
fi
done
fi
done
1998-08-20 21:58:15 +00:00
# Check each file we removed from gas/config, and make sure it is not
# mentioned in Makefiles or configure files.
for lost in .. $gas_config_files; do
if test $lost != .. && test $lost != CVS; then
1998-08-20 21:58:15 +00:00
if test -f config/$lost; then
:
else
for i in Makefile.am Makefile.in configure.in configure; do
if fgrep $lost $i >/dev/null 2>&1; then
echo '***' File gas/config/$lost was sanitized out but is still mentioned in gas/$i 1>&2
fi
done
fi
fi
done
# This must come after all other sanitizations. Re-sanitize the .pot
# file.
if [ -n "${verbose}" ]; then
echo Re-computing files for gettext ...
fi
if [ -n "${safe}" -a ! -f po/.Recover/POTFILES.in ]; then
if [ -n "${verbose}" ]; then
echo Caching po/POTFILES.in in .Recover...
fi
mv po/POTFILES.in po/.Recover
fi
find . -name '*.[ch]' | sed -e 's,^\./,,' > po/POTFILES.in
if [ -n "${safe}" -a ! -f po/.Recover/gas.pot ]; then
if [ -n "${verbose}" ]; then
echo Caching po/gas.pot in .Recover...
fi
mv po/gas.pot po/.Recover
fi
1998-04-23 05:17:30 +00:00
# If this fails, Sanitization must fail.
1998-05-06 18:16:28 +00:00
xgettext -c -k_ -kN_ -f po/POTFILES.in -o po/gas.pot || exit 1
1998-04-22 16:18:07 +00:00
# eof