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\-m32r > /dev/null ) ; then
20 keep_these_too="${m32r_files} ${keep_these_too}"
22 lose_these_too="${m32r_files} ${lose_these_too}"
26 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
27 keep_these_too="${v850_files} ${keep_these_too}"
29 lose_these_too="${v850_files} ${lose_these_too}"
32 d30v_files="d30v igen testsuite"
33 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
34 keep_these_too="${d30v_files} ${keep_these_too}"
36 lose_these_too="${d30v_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
71 m32r_files="configure configure.in ChangeLog"
72 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
73 for i in $m32r_files ; do
74 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
75 if [ -n "${verbose}" ] ; then
76 echo Keeping m32r stuff in $i
81 for i in $m32r_files ; do
82 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
83 if [ -n "${verbose}" ] ; then
84 echo Removing traces of \"m32r\" from $i...
87 sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
88 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
89 if [ -n "${verbose}" ] ; then
90 echo Caching $i in .Recover...
99 v850_files="configure configure.in ChangeLog"
100 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
101 for i in $v850_files ; do
102 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
103 if [ -n "${verbose}" ] ; then
104 echo Keeping v850 stuff in $i
109 for i in $v850_files ; do
110 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
111 if [ -n "${verbose}" ] ; then
112 echo Removing traces of \"v850\" from $i...
115 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
116 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
117 if [ -n "${verbose}" ] ; then
118 echo Caching $i in .Recover...
127 d30v_files="configure configure.in ChangeLog"
128 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
129 for i in $d30v_files ; do
130 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
131 if [ -n "${verbose}" ] ; then
132 echo Keeping d30v stuff in $i
137 for i in $d30v_files ; do
138 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
139 if [ -n "${verbose}" ] ; then
140 echo Removing traces of \"d30v\" from $i...
143 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
144 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
145 if [ -n "${verbose}" ] ; then
146 echo Caching $i in .Recover...
156 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
157 echo '***' Some mentions of Sanitize are still left in $i! 1>&2