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 d10v_files="d10v-tdep.c"
34 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
35 keep_these_too="${d10v_files} ${keep_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Keeping ${d10v_files}
40 lose_these_too="${d10v_files} ${lose_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Deleting ${d10v_files}
46 gdbtk_files="README.GDBTK gdbtk.c gdbtk.tcl"
48 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
49 lose_these_too="${gdbtk_files} ${lose_these_too}"
50 if [ -n "${verbose}" ] ; then
51 echo Deleting ${gdbtk_files}
54 keep_these_too="${gdbtk_files} ${keep_these_too}"
55 if [ -n "${verbose}" ] ; then
56 echo Keeping ${gdbtk_files}
60 # WinGDB files are not really ready to be part of FSF releases, but
61 # keep them for progressives and such.
65 if ( echo $* | grep lose\-mswin > /dev/null ) ; then
66 lose_these_too="${mswin_files} ${lose_these_too}"
67 if [ -n "${verbose}" ] ; then
68 echo Deleting ${mswin_files}
71 keep_these_too="${mswin_files} ${keep_these_too}"
72 if [ -n "${verbose}" ] ; then
73 echo Keeping ${mswin_files}
77 gm_files="gmagic.c gmagic.h"
79 if ( echo $* | grep keep\-gm > /dev/null ) ; then
80 keep_these_too="${gm_files} ${keep_these_too}"
81 if [ -n "${verbose}" ] ; then
82 echo Keeping ${gm_files}
85 lose_these_too="${gm_files} ${lose_these_too}"
86 if [ -n "${verbose}" ] ; then
87 echo Deleting ${gm_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 m32r_files="m32r-tdep.c m32r-rom.c"
107 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
108 keep_these_too="${m32r_files} ${keep_these_too}"
109 if [ -n "${verbose}" ] ; then
110 echo Keeping ${m32r_files}
113 lose_these_too="${m32r_files} ${lose_these_too}"
114 if [ -n "${verbose}" ] ; then
115 echo Deleting ${m32r_files}
119 # All files listed between the "Things-to-keep:" line and the
120 # "Files-to-sed:" line will be kept. All other files will be removed.
121 # Directories listed in this section will have their own Sanitize
122 # called. Directories not listed will be removed in their entirety
452 # Things which are explicitly *not* kept, for now.
461 # Don't try to clean directories here, as the 'mv' command will fail.
462 # Also, grep fails on NFS mounted directories.
463 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
464 echo Catering to RMS by removing traces of \"gdbtk\"...
466 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
467 echo Removing traces of \"gdbtk\" out of $i...
469 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
470 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
471 echo Caching $i in .Recover...
478 echo Leaving \"gdbtk\" in the sources...
480 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
481 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
483 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
484 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
485 echo Caching $i in .Recover...
493 arc_files="configure.tgt ChangeLog-95"
495 if ( echo $* | grep keep\-arc > /dev/null ) ; then
496 for i in $arc_files ; do
497 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
498 if [ -n "${verbose}" ] ; then
499 echo Keeping arc stuff in $i
504 for i in $arc_files ; do
505 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
506 if [ -n "${verbose}" ] ; then
507 echo Removing traces of \"arc\" from $i...
510 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
511 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
512 if [ -n "${verbose}" ] ; then
513 echo Caching $i in .Recover...
522 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
524 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
525 if [ -n "${verbose}" ] ; then
526 echo Keeping d10v stuff in $i
532 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
533 if [ -n "${verbose}" ] ; then
534 echo Removing traces of \"d10v\" from $i...
537 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
538 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
539 if [ -n "${verbose}" ] ; then
540 echo Caching $i in .Recover...
549 if ( echo $* | grep keep\-gm > /dev/null ) ; then
551 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
552 if [ -n "${verbose}" ] ; then
553 echo Keeping gm stuff in $i
559 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
560 if [ -n "${verbose}" ] ; then
561 echo Removing traces of \"gm\" from $i...
564 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
565 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
566 if [ -n "${verbose}" ] ; then
567 echo Caching $i in .Recover...
576 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
578 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
579 if [ -n "${verbose}" ] ; then
580 echo Keeping v850 stuff in $i
586 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
587 if [ -n "${verbose}" ] ; then
588 echo Removing traces of \"v850\" from $i...
591 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
592 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
593 if [ -n "${verbose}" ] ; then
594 echo Caching $i in .Recover...
603 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
605 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
606 if [ -n "${verbose}" ] ; then
607 echo Keeping m32r stuff in $i
613 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
614 if [ -n "${verbose}" ] ; then
615 echo Removing traces of \"m32r\" from $i...
618 sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
619 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
620 if [ -n "${verbose}" ] ; then
621 echo Caching $i in .Recover...
631 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
632 echo '***' Some mentions of Sanitize are still left in $i! 1>&2