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 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
19 keep_these_too="elf64-sparc.c"
21 lose_these_too="elf64-sparc.c"
24 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
25 keep_these_too="mpw-make.in mpw-config.in ChangeLog.mpw ${keep_these_too}"
27 lose_these_too="mpw-make.in mpw-config.in ChangeLog.mpw ${lose_these_too}"
30 if ( echo $* | grep keep\-gm > /dev/null ) ; then
31 keep_these_too="ChangeLog.gm ${keep_these_too}"
33 lose_these_too="ChangeLog.gm ${lose_these_too}"
36 # All files listed between the "Things-to-keep:" line and the
37 # "Files-to-sed:" line will be kept. All other files will be removed.
38 # Directories listed in this section will have their own Sanitize
39 # called. Directories not listed will be removed in their entirety
212 v9files="configure.in elfcode.h reloc.c bfd-in2.h targets.c config.bfd"
213 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
214 if [ -n "${verbose}" ] ; then
215 echo Keeping v9 stuff in $v9files.
218 if [ -n "${verbose}" ]; then
219 echo -n Cleaning v9 in `pwd`:
221 for f in $v9files ; do
222 if [ -n "${verbose}" ] ; then
225 sed '/start\-sanitize\-v9/,/end\-sanitize\-v9/d' < $f > new
226 if [ -n "${safe}" ] ; then
235 mpwfiles="coffswap.h"
236 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
237 if [ -n "${verbose}" ] ; then
238 echo Keeping mpw stuff in $mpwfiles.
241 if [ -n "${verbose}" ]; then
242 echo -n Cleaning mpw in `pwd`:
244 for f in $mpwfiles ; do
245 if [ -n "${verbose}" ] ; then
248 sed '/start\-sanitize\-mpw/,/end\-sanitize\-mpw/d' < $f > new
249 if [ -n "${safe}" ] ; then