1 # .Sanitize for devo/gas.
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 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
110 arc_files="ChangeLog configure.in configure Makefile.in ChangeLog.1"
111 if ( echo $* | grep keep\-arc > /dev/null ) ; then
112 for i in $arc_files ; do
113 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
114 if [ -n "${verbose}" ] ; then
115 echo Keeping arc stuff in $i
120 for i in $arc_files ; do
121 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
122 if [ -n "${verbose}" ] ; then
123 echo Removing traces of \"arc\" from $i...
126 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
127 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
128 if [ -n "${verbose}" ] ; then
129 echo Caching $i in .Recover...
138 if ( echo $* | grep keep\-gm > /dev/null ) ; then
140 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
141 if [ -n "${verbose}" ] ; then
142 echo Keeping gm stuff in $i
148 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
149 if [ -n "${verbose}" ] ; then
150 echo Removing traces of \"gm\" from $i...
153 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
154 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
155 if [ -n "${verbose}" ] ; then
156 echo Caching $i in .Recover...
166 v850_files="ChangeLog configure.in configure Makefile.in write.c"
167 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
168 for i in $v850_files ; do
169 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
170 if [ -n "${verbose}" ] ; then
171 echo Keeping v850 stuff in $i
176 for i in $v850_files ; do
177 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
178 if [ -n "${verbose}" ] ; then
179 echo Removing traces of \"v850\" from $i...
182 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
183 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
184 if [ -n "${verbose}" ] ; then
185 echo Caching $i in .Recover...
194 r5900_files="ChangeLog"
195 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
196 for i in $r5900_files ; do
197 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
198 if [ -n "${verbose}" ] ; then
199 echo Keeping r5900 stuff in $i
204 for i in $r5900_files ; do
205 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
206 if [ -n "${verbose}" ] ; then
207 echo Removing traces of \"r5900\" from $i...
210 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
211 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
212 if [ -n "${verbose}" ] ; then
213 echo Caching $i in .Recover...
222 tic80_files="ChangeLog configure.in configure"
223 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
224 for i in $tic80_files ; do
225 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
226 if [ -n "${verbose}" ] ; then
227 echo Keeping tic80 stuff in $i
232 for i in $tic80_files ; do
233 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
234 if [ -n "${verbose}" ] ; then
235 echo Removing traces of \"tic80\" from $i...
238 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
239 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
240 if [ -n "${verbose}" ] ; then
241 echo Caching $i in .Recover...
250 d30v_files="ChangeLog configure configure.in"
251 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
252 for i in $d30v_files ; do
253 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
254 if [ -n "${verbose}" ] ; then
255 echo Keeping d30v stuff in $i
260 for i in $d30v_files ; do
261 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
262 if [ -n "${verbose}" ] ; then
263 echo Removing traces of \"d30v\" from $i...
266 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
267 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
268 if [ -n "${verbose}" ] ; then
269 echo Caching $i in .Recover...
279 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
280 echo '***' Some mentions of Sanitize are still left in $i! 1>&2