1 # Sanitize.in for devo/bfd.
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
18 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
19 keep_these_too="elf64-sparc.c"
22 # All files listed between the "Things-to-keep:" line and the
23 # "Files-to-sed:" line will be kept. All other files will be removed.
24 # Directories listed in this section will have their own Sanitize
25 # called. Directories not listed will be removed in their entirety
175 v9files="configure.in elfcode.h reloc.c bfd-in2.h targets.c config.bfd"
176 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
177 if [ -n "${verbose}" ] ; then
178 echo Keeping v9 stuff in $v9files.
181 if [ -n "${verbose}" ]; then
182 echo -n Cleaning v9 in `pwd`:
184 for f in $v9files ; do
185 if [ -n "${verbose}" ] ; then
188 sed '/start\-sanitize\-v9/,/end\-sanitize\-v9/d' < $f > new
189 if [ -n "${safe}" ] ; then