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 m32r-stub.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
454 # Things which are explicitly *not* kept, for now.
463 # Don't try to clean directories here, as the 'mv' command will fail.
464 # Also, grep fails on NFS mounted directories.
465 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
466 echo Catering to RMS by removing traces of \"gdbtk\"...
468 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
469 echo Removing traces of \"gdbtk\" out of $i...
471 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
472 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
473 echo Caching $i in .Recover...
480 echo Leaving \"gdbtk\" in the sources...
482 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
483 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
485 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
486 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
487 echo Caching $i in .Recover...
495 arc_files="configure.tgt ChangeLog-95"
497 if ( echo $* | grep keep\-arc > /dev/null ) ; then
498 for i in $arc_files ; do
499 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
500 if [ -n "${verbose}" ] ; then
501 echo Keeping arc stuff in $i
506 for i in $arc_files ; do
507 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
508 if [ -n "${verbose}" ] ; then
509 echo Removing traces of \"arc\" from $i...
512 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
513 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
514 if [ -n "${verbose}" ] ; then
515 echo Caching $i in .Recover...
524 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
526 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
527 if [ -n "${verbose}" ] ; then
528 echo Keeping d10v stuff in $i
534 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
535 if [ -n "${verbose}" ] ; then
536 echo Removing traces of \"d10v\" from $i...
539 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
540 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
541 if [ -n "${verbose}" ] ; then
542 echo Caching $i in .Recover...
551 if ( echo $* | grep keep\-gm > /dev/null ) ; then
553 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
554 if [ -n "${verbose}" ] ; then
555 echo Keeping gm stuff in $i
561 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
562 if [ -n "${verbose}" ] ; then
563 echo Removing traces of \"gm\" from $i...
566 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
567 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
568 if [ -n "${verbose}" ] ; then
569 echo Caching $i in .Recover...
578 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
580 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
581 if [ -n "${verbose}" ] ; then
582 echo Keeping v850 stuff in $i
588 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
589 if [ -n "${verbose}" ] ; then
590 echo Removing traces of \"v850\" from $i...
593 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
594 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
595 if [ -n "${verbose}" ] ; then
596 echo Caching $i in .Recover...
605 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
607 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
608 if [ -n "${verbose}" ] ; then
609 echo Keeping r5900 stuff in $i
615 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
616 if [ -n "${verbose}" ] ; then
617 echo Removing traces of \"r5900\" from $i...
620 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
621 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
622 if [ -n "${verbose}" ] ; then
623 echo Caching $i in .Recover...
632 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
634 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
635 if [ -n "${verbose}" ] ; then
636 echo Keeping m32r stuff in $i
642 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
643 if [ -n "${verbose}" ] ; then
644 echo Removing traces of \"m32r\" from $i...
647 sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
648 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
649 if [ -n "${verbose}" ] ; then
650 echo Caching $i in .Recover...
660 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
661 echo '***' Some mentions of Sanitize are still left in $i! 1>&2