1 # .Sanitize for devo/sim.
3 # Each directory to survive it's 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
19 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
20 keep_these_too="${d10v_files} ${keep_these_too}"
22 lose_these_too="${d10v_files} ${lose_these_too}"
26 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
27 keep_these_too="${m32r_files} ${keep_these_too}"
29 lose_these_too="${m32r_files} ${lose_these_too}"
33 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
34 keep_these_too="${v850_files} ${keep_these_too}"
36 lose_these_too="${v850_files} ${lose_these_too}"
39 # All files listed between the "Things-to-keep:" line and the
40 # "Files-to-sed:" line will be kept. All other files will be removed.
41 # Directories listed in this section will have their own Sanitize
42 # called. Directories not listed will be removed in their entirety
66 d10v_files="configure configure.in ChangeLog"
67 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
68 for i in $d10v_files ; do
69 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
70 if [ -n "${verbose}" ] ; then
71 echo Keeping d10v stuff in $i
76 for i in $d10v_files ; do
77 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
78 if [ -n "${verbose}" ] ; then
79 echo Removing traces of \"d10v\" from $i...
82 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
83 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
84 if [ -n "${verbose}" ] ; then
85 echo Caching $i in .Recover...
94 m32r_files="configure configure.in ChangeLog"
95 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
96 for i in $m32r_files ; do
97 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
98 if [ -n "${verbose}" ] ; then
99 echo Keeping m32r stuff in $i
104 for i in $m32r_files ; do
105 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
106 if [ -n "${verbose}" ] ; then
107 echo Removing traces of \"m32r\" from $i...
110 sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
111 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
112 if [ -n "${verbose}" ] ; then
113 echo Caching $i in .Recover...
122 v850_files="configure configure.in ChangeLog"
123 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
124 for i in $v850_files ; do
125 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
126 if [ -n "${verbose}" ] ; then
127 echo Keeping v850 stuff in $i
132 for i in $v850_files ; do
133 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
134 if [ -n "${verbose}" ] ; then
135 echo Removing traces of \"v850\" from $i...
138 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
139 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
140 if [ -n "${verbose}" ] ; then
141 echo Caching $i in .Recover...
150 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
151 echo '***' Some mentions of Sanitize are still left in $i! 1>&2