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
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"
26 if ( echo $* | grep keep\-gm > /dev/null ) ; then
27 keep_these_too="mpw-xconfig.in ChangeLog.gm ${keep_these_too}"
31 # All files listed between the "Things-to-keep:" line and the
32 # "Files-to-sed:" line will be kept. All other files will be removed.
33 # Directories listed in this section will have their own Sanitize
34 # called. Directories not listed will be removed in their entirety
199 v9files="configure.in elfcode.h reloc.c bfd-in2.h targets.c config.bfd"
200 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
201 if [ -n "${verbose}" ] ; then
202 echo Keeping v9 stuff in $v9files.
205 if [ -n "${verbose}" ]; then
206 echo -n Cleaning v9 in `pwd`:
208 for f in $v9files ; do
209 if [ -n "${verbose}" ] ; then
212 sed '/start\-sanitize\-v9/,/end\-sanitize\-v9/d' < $f > new
213 if [ -n "${safe}" ] ; then
222 mpwfiles="coffswap.h"
223 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
224 if [ -n "${verbose}" ] ; then
225 echo Keeping mpw stuff in $mpwfiles.
228 if [ -n "${verbose}" ]; then
229 echo -n Cleaning mpw in `pwd`:
231 for f in $mpwfiles ; do
232 if [ -n "${verbose}" ] ; then
235 sed '/start\-sanitize\-mpw/,/end\-sanitize\-mpw/d' < $f > new
236 if [ -n "${safe}" ] ; then