1 # .Sanitize for devo/gdb.
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="arc-tdep.c remote-arc.c"
20 if ( echo $* | grep keep\-arc > /dev/null ) ; then
21 keep_these_too="${arc_files} ${keep_these_too}"
22 if [ -n "${verbose}" ] ; then
23 echo Keeping ${arc_files}
26 lose_these_too="${arc_files} ${lose_these_too}"
27 if [ -n "${verbose}" ] ; then
28 echo Deleting ${arc_files}
32 gdbtk_files="README.GDBTK gdbtk.c gdbtcl gdbtk.tcl"
34 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
35 lose_these_too="${gdbtk_files} ${lose_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Deleting ${gdbtk_files}
40 keep_these_too="${gdbtk_files} ${keep_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Keeping ${gdbtk_files}
46 # WinGDB files are not really ready to be part of FSF releases, but
47 # keep them for progressives and such.
51 if ( echo $* | grep lose\-mswin > /dev/null ) ; then
52 lose_these_too="${mswin_files} ${lose_these_too}"
53 if [ -n "${verbose}" ] ; then
54 echo Deleting ${mswin_files}
57 keep_these_too="${mswin_files} ${keep_these_too}"
58 if [ -n "${verbose}" ] ; then
59 echo Keeping ${mswin_files}
63 gm_files="gmagic.c gmagic.h"
65 if ( echo $* | grep keep\-gm > /dev/null ) ; then
66 keep_these_too="${gm_files} ${keep_these_too}"
67 if [ -n "${verbose}" ] ; then
68 echo Keeping ${gm_files}
71 lose_these_too="${gm_files} ${lose_these_too}"
72 if [ -n "${verbose}" ] ; then
73 echo Deleting ${gm_files}
77 tic80_files="tic80-tdep.c"
79 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
80 keep_these_too="${tic80_files} ${keep_these_too}"
81 if [ -n "${verbose}" ] ; then
82 echo Keeping ${tic80_files}
85 lose_these_too="${tic80_files} ${lose_these_too}"
86 if [ -n "${verbose}" ] ; then
87 echo Deleting ${tic80_files}
91 v850_files="v850ice.c v850-tdep.c"
93 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
94 keep_these_too="${v850_files} ${keep_these_too}"
95 if [ -n "${verbose}" ] ; then
96 echo Keeping ${v850_files}
99 lose_these_too="${v850_files} ${lose_these_too}"
100 if [ -n "${verbose}" ] ; then
101 echo Deleting ${v850_files}
105 # All files listed between the "Things-to-keep:" line and the
106 # "Files-to-sed:" line will be kept. All other files will be removed.
107 # Directories listed in this section will have their own Sanitize
108 # called. Directories not listed will be removed in their entirety
451 # Things which are explicitly *not* kept, for now.
460 # Don't try to clean directories here, as the 'mv' command will fail.
461 # Also, grep fails on NFS mounted directories.
462 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
463 echo Catering to RMS by removing traces of \"gdbtk\"...
465 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
466 echo Removing traces of \"gdbtk\" out of $i...
468 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
469 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
470 echo Caching $i in .Recover...
477 echo Leaving \"gdbtk\" in the sources...
479 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
480 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
482 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
483 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
484 echo Caching $i in .Recover...
492 arc_files="configure.tgt ChangeLog-95"
494 if ( echo $* | grep keep\-arc > /dev/null ) ; then
495 for i in $arc_files ; do
496 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
497 if [ -n "${verbose}" ] ; then
498 echo Keeping arc stuff in $i
503 for i in $arc_files ; do
504 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
505 if [ -n "${verbose}" ] ; then
506 echo Removing traces of \"arc\" from $i...
509 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
510 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
511 if [ -n "${verbose}" ] ; then
512 echo Caching $i in .Recover...
521 if ( echo $* | grep keep\-gm > /dev/null ) ; then
523 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
524 if [ -n "${verbose}" ] ; then
525 echo Keeping gm stuff in $i
531 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
532 if [ -n "${verbose}" ] ; then
533 echo Removing traces of \"gm\" from $i...
536 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
537 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
538 if [ -n "${verbose}" ] ; then
539 echo Caching $i in .Recover...
548 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
550 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
551 if [ -n "${verbose}" ] ; then
552 echo Keeping v850 stuff in $i
558 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
559 if [ -n "${verbose}" ] ; then
560 echo Removing traces of \"v850\" from $i...
563 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
564 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
565 if [ -n "${verbose}" ] ; then
566 echo Caching $i in .Recover...
575 if ( echo $* | grep keep\-sh4 > /dev/null ) ; then
577 if test ! -d $i && (grep sanitize-sh4 $i > /dev/null) ; then
578 if [ -n "${verbose}" ] ; then
579 echo Keeping sh4 stuff in $i
585 if test ! -d $i && (grep sanitize-sh4 $i > /dev/null) ; then
586 if [ -n "${verbose}" ] ; then
587 echo Removing traces of \"sh4\" from $i...
590 sed '/start\-sanitize\-sh4/,/end-\sanitize\-sh4/d' < $i > new
591 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
592 if [ -n "${verbose}" ] ; then
593 echo Caching $i in .Recover...
602 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
604 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
605 if [ -n "${verbose}" ] ; then
606 echo Keeping r5900 stuff in $i
612 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
613 if [ -n "${verbose}" ] ; then
614 echo Removing traces of \"r5900\" from $i...
617 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
618 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
619 if [ -n "${verbose}" ] ; then
620 echo Caching $i in .Recover...
629 if ( echo $* | grep keep\-tx39 > /dev/null ) ; then
631 if test ! -d $i && (grep sanitize-tx39 $i > /dev/null) ; then
632 if [ -n "${verbose}" ] ; then
633 echo Keeping tx39 stuff in $i
639 if test ! -d $i && (grep sanitize-tx39 $i > /dev/null) ; then
640 if [ -n "${verbose}" ] ; then
641 echo Removing traces of \"tx39\" from $i...
644 sed '/start\-sanitize\-tx39/,/end-\sanitize\-tx39/d' < $i > new
645 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
646 if [ -n "${verbose}" ] ; then
647 echo Caching $i in .Recover...
656 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
658 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
659 if [ -n "${verbose}" ] ; then
660 echo Keeping tic80 stuff in $i
666 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
667 if [ -n "${verbose}" ] ; then
668 echo Removing traces of \"tic80\" from $i...
671 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
672 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
673 if [ -n "${verbose}" ] ; then
674 echo Caching $i in .Recover...
684 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
685 echo '***' Some mentions of Sanitize are still left in $i! 1>&2