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
213 v9files="configure.in elfcode.h reloc.c bfd-in2.h targets.c config.bfd"
214 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
215 if [ -n "${verbose}" ] ; then
216 echo Keeping v9 stuff in $v9files.
219 if [ -n "${verbose}" ]; then
220 echo -n Cleaning v9 in `pwd`:
222 for f in $v9files ; do
223 if [ -n "${verbose}" ] ; then
226 sed '/start\-sanitize\-v9/,/end\-sanitize\-v9/d' < $f > new
227 if [ -n "${safe}" ] ; then
236 mpwfiles="coffswap.h"
237 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
238 if [ -n "${verbose}" ] ; then
239 echo Keeping mpw stuff in $mpwfiles.
242 if [ -n "${verbose}" ]; then
243 echo -n Cleaning mpw in `pwd`:
245 for f in $mpwfiles ; do
246 if [ -n "${verbose}" ] ; then
249 sed '/start\-sanitize\-mpw/,/end\-sanitize\-mpw/d' < $f > new
250 if [ -n "${safe}" ] ; then
259 ppcfiles="ChangeLog Makefile.in configure.in config.bfd targets.c"
260 if ( echo $* | grep keep\-powerpc\-netware > /dev/null ) ; then
261 if [ -n "${verbose}" ] ; then
262 echo Keeping PowerPC NetWare stuff in $ppcfiles.
265 if [ -n "${verbose}" ]; then
266 echo -n Removing PowerPC NetWare in `pwd`:
268 for f in $ppcfiles ; do
269 if [ -n "${verbose}" ] ; then
272 sed '/start\-sanitize\-powerpc\-netware/,/end\-sanitize\-powerpc\-netware/d' < $f > new
273 if [ -n "${safe}" ] ; then