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 if ( echo $* | grep keep\-powerpc\-netware > /dev/null ) ; then
37 keep_these_too="nlm32-ppc.c ${keep_these_too}"
39 lose_these_too="nlm32-ppc.c ${lose_these_too}"
42 # All files listed between the "Things-to-keep:" line and the
43 # "Files-to-sed:" line will be kept. All other files will be removed.
44 # Directories listed in this section will have their own Sanitize
45 # called. Directories not listed will be removed in their entirety
215 v9files="configure.in elfcode.h reloc.c bfd-in2.h targets.c config.bfd"
216 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
217 if [ -n "${verbose}" ] ; then
218 echo Keeping v9 stuff in $v9files.
221 if [ -n "${verbose}" ]; then
222 echo -n Cleaning v9 in `pwd`:
224 for f in $v9files ; do
225 if [ -n "${verbose}" ] ; then
228 sed '/start\-sanitize\-v9/,/end\-sanitize\-v9/d' < $f > new
229 if [ -n "${safe}" ] ; then
238 mpwfiles="coffswap.h"
239 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
240 if [ -n "${verbose}" ] ; then
241 echo Keeping mpw stuff in $mpwfiles.
244 if [ -n "${verbose}" ]; then
245 echo -n Cleaning mpw in `pwd`:
247 for f in $mpwfiles ; do
248 if [ -n "${verbose}" ] ; then
251 sed '/start\-sanitize\-mpw/,/end\-sanitize\-mpw/d' < $f > new
252 if [ -n "${safe}" ] ; then
261 ppcfiles="ChangeLog Makefile.in configure.in config.bfd targets.c"
262 if ( echo $* | grep keep\-powerpc\-netware > /dev/null ) ; then
263 if [ -n "${verbose}" ] ; then
264 echo Keeping PowerPC NetWare stuff in $ppcfiles.
267 if [ -n "${verbose}" ]; then
268 echo -n Removing PowerPC NetWare in `pwd`:
270 for f in $ppcfiles ; do
271 if [ -n "${verbose}" ] ; then
274 sed '/start\-sanitize\-powerpc\-netware/,/end\-sanitize\-powerpc\-netware/d' < $f > new
275 if [ -n "${safe}" ] ; then