1 # .Sanitize for devo/bfd.
3 # Each directory to survive its way into a release will need a file
4 # like this one called "./.Sanitize". All keyword lines must exist,
5 # and must exist in the order specified by this file. Each directory
6 # in the tree will be processed, top down, in the following order.
8 # Hash started lines like this one are comments and will be deleted
9 # before anything else is done. Blank lines will also be squashed
12 # The lines between the "Do-first:" line and the "Things-to-keep:"
13 # line are executed as a /bin/sh shell script before anything else is
14 # done in this directory.
18 arc_files="cpu-arc.c elf32-arc.c"
20 if ( echo $* | grep keep\-arc > /dev/null ) ; then
21 keep_these_too="${arc_files} ${keep_these_too}"
23 lose_these_too="${arc_files} ${lose_these_too}"
26 d10v_files="cpu-d10v.c elf32-d10v.c"
28 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
29 keep_these_too="${d10v_files} ${keep_these_too}"
31 lose_these_too="${d10v_files} ${lose_these_too}"
34 v850_files="cpu-v850.c elf32-v850.c"
36 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
37 keep_these_too="${v850_files} ${keep_these_too}"
39 lose_these_too="${v850_files} ${lose_these_too}"
42 # All files listed between the "Things-to-keep:" line and the
43 # "Files-to-sed:" line will be kept. All other files will be removed.
44 # Directories listed in this section will have their own Sanitize
45 # called. Directories not listed will be removed in their entirety
279 arc_files="ChangeLog ChangeLog.2 Makefile.in archures.c reloc.c targets.c config.bfd configure.in configure bfd-in2.h elf.c libbfd.h"
280 if ( echo $* | grep keep\-arc > /dev/null ) ; then
281 for i in $arc_files ; do
282 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
283 if [ -n "${verbose}" ] ; then
284 echo Keeping arc stuff in $i
289 for i in $arc_files ; do
290 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
291 if [ -n "${verbose}" ] ; then
292 echo Removing traces of \"arc\" from $i...
295 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
296 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
297 if [ -n "${verbose}" ] ; then
298 echo Caching $i in .Recover...
307 d10v_files="ChangeLog ChangeLog.2 Makefile.in archures.c reloc.c targets.c config.bfd configure.in configure bfd-in2.h elf.c libbfd.h"
308 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
309 for i in $d10v_files ; do
310 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
311 if [ -n "${verbose}" ] ; then
312 echo Keeping d10v stuff in $i
317 for i in $d10v_files ; do
318 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
319 if [ -n "${verbose}" ] ; then
320 echo Removing traces of \"d10v\" from $i...
323 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
324 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
325 if [ -n "${verbose}" ] ; then
326 echo Caching $i in .Recover...
335 v850_files="ChangeLog ChangeLog.2 Makefile.in archures.c reloc.c targets.c config.bfd configure.in configure bfd-in2.h elf.c libbfd.h"
336 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
337 for i in $v850_files ; do
338 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
339 if [ -n "${verbose}" ] ; then
340 echo Keeping v850 stuff in $i
345 for i in $v850_files ; do
346 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
347 if [ -n "${verbose}" ] ; then
348 echo Removing traces of \"v850\" from $i...
351 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
352 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
353 if [ -n "${verbose}" ] ; then
354 echo Caching $i in .Recover...
363 gm_files="ChangeLog ChangeLog.2 config.bfd"
364 if ( echo $* | grep keep\-gm > /dev/null ) ; then
365 for i in $gm_files ; do
366 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
367 if [ -n "${verbose}" ] ; then
368 echo Keeping gm stuff in $i
373 for i in $gm_files ; do
374 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
375 if [ -n "${verbose}" ] ; then
376 echo Removing traces of \"gm\" from $i...
379 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
380 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
381 if [ -n "${verbose}" ] ; then
382 echo Caching $i in .Recover...
392 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
393 echo '***' Some mentions of Sanitize are still left in $i! 1>&2