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\-d30v > /dev/null ) ; then
20 keep_these_too="${d30v_files} ${keep_these_too}"
22 lose_these_too="${d30v_files} ${lose_these_too}"
26 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
27 keep_these_too="${tic80_files} ${keep_these_too}"
29 lose_these_too="${tic80_files} ${lose_these_too}"
32 lose_these_too="${lose_these_too}"
34 # All files listed between the "Things-to-keep:" line and the
35 # "Files-to-sed:" line will be kept. All other files will be removed.
36 # Directories listed in this section will have their own Sanitize
37 # called. Directories not listed will be removed in their entirety
70 d30v_files="configure configure.in ChangeLog"
71 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
72 for i in $d30v_files ; do
73 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
74 if [ -n "${verbose}" ] ; then
75 echo Keeping d30v stuff in $i
80 for i in $d30v_files ; do
81 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
82 if [ -n "${verbose}" ] ; then
83 echo Removing traces of \"d30v\" from $i...
86 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
87 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
88 if [ -n "${verbose}" ] ; then
89 echo Caching $i in .Recover...
98 tic80_files="configure configure.in ChangeLog"
99 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
100 for i in $tic80_files ; do
101 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
102 if [ -n "${verbose}" ] ; then
103 echo Keeping tic80 stuff in $i
108 for i in $tic80_files ; do
109 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
110 if [ -n "${verbose}" ] ; then
111 echo Removing traces of \"tic80\" from $i...
114 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
115 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
116 if [ -n "${verbose}" ] ; then
117 echo Caching $i in .Recover...
126 v850_files="configure configure.in ChangeLog"
127 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
128 for i in $v850_files ; do
129 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
130 if [ -n "${verbose}" ] ; then
131 echo Keeping v850e stuff in $i
136 for i in $v850_files ; do
137 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
138 if [ -n "${verbose}" ] ; then
139 echo Removing traces of \"v850e\" from $i...
142 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
143 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
144 if [ -n "${verbose}" ] ; then
145 echo Caching $i in .Recover...
154 vr4320_files="ChangeLog"
155 if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
156 for i in $vr4320_files ; do
157 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
158 if [ -n "${verbose}" ] ; then
159 echo Keeping vr4320 stuff in $i
164 for i in $vr4320_files ; do
165 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
166 if [ -n "${verbose}" ] ; then
167 echo Removing traces of \"vr4320\" from $i...
170 sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/d' < $i > new
171 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
172 if [ -n "${verbose}" ] ; then
173 echo Caching $i in .Recover...
183 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
184 echo '***' Some mentions of Sanitize are still left in $i! 1>&2