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 m32r_files="cpu-m32r.c elf32-m32r.c"
36 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
37 keep_these_too="${m32r_files} ${keep_these_too}"
39 lose_these_too="${m32r_files} ${lose_these_too}"
42 v850_files="cpu-v850.c elf32-v850.c"
44 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
45 keep_these_too="${v850_files} ${keep_these_too}"
47 lose_these_too="${v850_files} ${lose_these_too}"
50 # All files listed between the "Things-to-keep:" line and the
51 # "Files-to-sed:" line will be kept. All other files will be removed.
52 # Directories listed in this section will have their own Sanitize
53 # called. Directories not listed will be removed in their entirety
294 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"
295 if ( echo $* | grep keep\-arc > /dev/null ) ; then
296 for i in $arc_files ; do
297 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
298 if [ -n "${verbose}" ] ; then
299 echo Keeping arc stuff in $i
304 for i in $arc_files ; do
305 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
306 if [ -n "${verbose}" ] ; then
307 echo Removing traces of \"arc\" from $i...
310 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
311 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
312 if [ -n "${verbose}" ] ; then
313 echo Caching $i in .Recover...
322 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"
323 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
324 for i in $d10v_files ; do
325 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
326 if [ -n "${verbose}" ] ; then
327 echo Keeping d10v stuff in $i
332 for i in $d10v_files ; do
333 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
334 if [ -n "${verbose}" ] ; then
335 echo Removing traces of \"d10v\" from $i...
338 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
339 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
340 if [ -n "${verbose}" ] ; then
341 echo Caching $i in .Recover...
350 m32r_files="ChangeLog Makefile.in config.bfd configure.in configure elf.c archures.c reloc.c targets.c bfd-in2.h libbfd.h"
351 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
352 for i in $m32r_files ; do
353 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
354 if [ -n "${verbose}" ] ; then
355 echo Keeping m32r stuff in $i
360 for i in $m32r_files ; do
361 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
362 if [ -n "${verbose}" ] ; then
363 echo Removing traces of \"m32r\" from $i...
366 sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
367 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
368 if [ -n "${verbose}" ] ; then
369 echo Caching $i in .Recover...
378 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"
379 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
380 for i in $v850_files ; do
381 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
382 if [ -n "${verbose}" ] ; then
383 echo Keeping v850 stuff in $i
388 for i in $v850_files ; do
389 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
390 if [ -n "${verbose}" ] ; then
391 echo Removing traces of \"v850\" from $i...
394 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
395 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
396 if [ -n "${verbose}" ] ; then
397 echo Caching $i in .Recover...
406 gm_files="ChangeLog ChangeLog.2 config.bfd"
407 if ( echo $* | grep keep\-gm > /dev/null ) ; then
408 for i in $gm_files ; do
409 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
410 if [ -n "${verbose}" ] ; then
411 echo Keeping gm stuff in $i
416 for i in $gm_files ; do
417 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
418 if [ -n "${verbose}" ] ; then
419 echo Removing traces of \"gm\" from $i...
422 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
423 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
424 if [ -n "${verbose}" ] ; then
425 echo Caching $i in .Recover...
435 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
436 echo '***' Some mentions of Sanitize are still left in $i! 1>&2