binutils-gdb/gas/.Sanitize

222 lines
4.2 KiB
Plaintext
Raw Normal View History

# .Sanitize for devo/gas.
1991-05-23 19:18:12 +02:00
1994-01-04 22:18:15 +01:00
# Each directory to survive its way into a release will need a file
1991-05-23 19:18:12 +02: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 19:18:12 +02:00
Do-first:
# All files listed between the "Things-to-keep:" line and the
# "Files-to-sed:" line will be kept. All other files will be removed.
# 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 09:05:32 +01:00
CONTRIBUTORS
1991-05-23 19:18:12 +02:00
COPYING
ChangeLog
Makefile.in
1992-12-08 09:05:32 +01:00
NEWS
1991-05-23 19:18:12 +02:00
NOTES
NOTES.config
README
1992-02-13 11:13:24 +01:00
README-quirks
1992-12-08 09:05:32 +01:00
README-vms
1991-05-23 19:18:12 +02:00
README.coff
README.rich
1994-08-28 22:07:16 +02:00
acconfig.h
aclocal.m4
1991-05-23 19:18:12 +02:00
app.c
as.c
as.h
atof-generic.c
bignum-copy.c
bignum.h
1992-12-08 09:05:32 +01:00
bit_fix.h
1991-05-23 19:18:12 +02:00
cond.c
1994-08-28 22:07:16 +02:00
conf.in
1991-05-23 19:18:12 +02:00
config
config-gas.com
1994-08-28 22:07:16 +02:00
configure
configure.bat
1991-05-23 19:18:12 +02:00
configure.in
debug.c
doc
ecoff.c
ecoff.h
1995-05-12 02:04:35 +02:00
emul-target.h
emul.h
1991-05-23 19:18:12 +02:00
expr.c
expr.h
flonum-copy.c
1992-12-08 09:05:32 +01:00
flonum-konst.c
1991-05-23 19:18:12 +02:00
flonum-mult.c
flonum.h
frags.c
frags.h
1994-01-31 17:44:53 +01:00
gasp.c
1994-09-19 18:49:38 +02:00
gdbinit.in
1991-05-23 19:18:12 +02:00
hash.c
hash.h
input-file.c
input-file.h
input-scrub.c
1992-02-13 11:13:24 +01:00
link.cmd
1992-01-17 21:54:32 +01:00
listing.c
listing.h
1994-01-06 02:14:04 +01:00
literal.c
1995-09-29 03:38:28 +01: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 20:35:11 +02:00
macro.c
macro.h
1991-05-23 19:18:12 +02:00
messages.c
1995-04-12 21:29:34 +02:00
mpw-config.in
1995-09-29 03:38:28 +01:00
mpw-make.sed
1991-05-23 19:18:12 +02:00
obj.h
output-file.c
output-file.h
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 20:35:11 +02:00
sb.c
sb.h
1993-11-22 07:04:32 +01:00
stabs.c
1991-05-23 19:18:12 +02:00
struc-symbol.h
subsegs.c
subsegs.h
symbols.c
symbols.h
tc.h
1993-03-29 15:27:13 +02:00
testsuite
1994-03-15 04:35:59 +01:00
vmsconf.sh
1991-05-23 19:18:12 +02:00
write.c
write.h
xmalloc.c
1993-05-27 08:44:29 +02:00
Things-to-lose:
1991-05-23 19:18:12 +02:00
Do-last:
i960xl_files=ChangeLog
if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
if [ -n "${verbose}" ] ; then
echo Keeping i960xl stuff in $i960xl_files.
fi
else
if [ -n "${verbose}" ]; then
echo -n Cleaning i960xl in `pwd`:
fi
for f in $i960xl_files ; do
if [ -n "${verbose}" ] ; then
echo -n " " $f
fi
sed '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' < $f > new
if [ -n "${safe}" ] ; then
mv $f .Recover
fi
mv new $f
done
if [ -n "${verbose}" ]; then
echo ""
fi
fi
sh3e_files="ChangeLog"
if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
if [ -n "${verbose}" ] ; then
echo Keeping sh3e stuff in $sh3e_files.
fi
else
if [ -n "${verbose}" ]; then
echo -n Cleaning sh3e in `pwd`:
fi
for f in $sh3e_files ; do
if [ -n "${verbose}" ] ; then
echo -n " " $f
fi
sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
if [ -n "${safe}" ] ; then
mv $f .Recover
fi
mv new $f
done
if [ -n "${verbose}" ]; then
echo ""
fi
fi
rce_files="configure.in as.c configure ChangeLog Makefile.in"
1994-11-24 22:48:21 +01:00
if ( echo $* | grep keep\-rce > /dev/null ) ; then
for i in $rce_files ; do
if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping rce stuff in $i
fi
fi
done
else
for i in $rce_files ; do
if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"rce\" from $i...
fi
cp $i new
sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/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
arc_files="ChangeLog configure.in configure Makefile.in"
1994-11-30 03:16:54 +01:00
if ( echo $* | grep keep\-arc > /dev/null ) ; then
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping arc stuff in $i
fi
fi
done
else
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"arc\" from $i...
fi
cp $i new
sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/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
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
fi
done
1991-05-23 19:18:12 +02:00
#
# End of file.