1 # .Sanitize for devo/bfd.
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 mpw_files="mpw-config.in mpw-make.in ChangeLog.mpw"
20 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
21 keep_these_too="${mpw_files} ${keep_these_too}"
23 lose_these_too="${mpw_files} ${lose_these_too}"
26 r16_files="cpu-r16.c aout-r16.c"
28 if ( echo $* | grep keep\-r16 > /dev/null ) ; then
29 keep_these_too="${r16_files} ${keep_these_too}"
31 lose_these_too="${r16_files} ${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
223 mpwfiles="ecoffswap.h coffswap.h"
224 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
225 if [ -n "${verbose}" ] ; then
226 echo Keeping mpw stuff in $mpwfiles.
229 if [ -n "${verbose}" ]; then
230 echo -n Cleaning mpw in `pwd`:
232 for f in $mpwfiles ; do
233 if [ -n "${verbose}" ] ; then
236 sed '/start\-sanitize\-mpw/,/end\-sanitize\-mpw/d' < $f > new
237 if [ -n "${safe}" ] ; then
245 i960xl_files="ChangeLog archures.c bfd-in2.h cpu-i960.c coffcode.h"
246 if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
247 if [ -n "${verbose}" ] ; then
248 echo Keeping i960xl stuff in $i960xl_files.
251 if [ -n "${verbose}" ]; then
252 echo -n Cleaning i960xl in `pwd`:
254 for f in $i960xl_files ; do
255 if [ -n "${verbose}" ] ; then
258 sed -e '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' < $f > new
259 if [ -n "${safe}" ] ; then
266 r16_files = "ChangeLog archures.c config.bfd configure.in targets.c"
267 if ( echo $* | grep keep\-r16 > /dev/null ) ; then
268 for i in $r16_files ; do
269 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
270 if [ -n "${verbose}" ] ; then
271 echo Keeping r16 stuff in $i
276 for i in $r16_files ; do
277 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
278 if [ -n "${verbose}" ] ; then
279 echo Removing traces of \"r16\" from $i...
282 sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new
283 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
284 if [ -n "${verbose}" ] ; then
285 echo Caching $i in .Recover...
295 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
296 echo '***' Some mentions of Sanitize are still left in $i! 1>&2