*** empty log message ***
[deliverable/binutils-gdb.git] / bfd / .Sanitize
index f2baca11cb22d2abd65df3d91a4278f205c53bf4..24eba61075a683a135d674201be137ba48f01adf 100644 (file)
@@ -23,6 +23,14 @@ else
        lose_these_too="${mpw_files} ${lose_these_too}"
 fi
 
+r16_files="cpu-r16.c aout-r16.c"
+
+if ( echo $* | grep keep\-r16 > /dev/null ) ; then
+       keep_these_too="${r16_files} ${keep_these_too}"
+else
+       lose_these_too="${r16_files} ${lose_these_too}"
+fi
+
 # All files listed between the "Things-to-keep:" line and the
 # "Files-to-sed:" line will be kept.  All other files will be removed.
 # Directories listed in this section will have their own Sanitize
@@ -53,6 +61,7 @@ archures.c
 bfd-in.h
 bfd-in2.h
 bfd.c
+binary.c
 bout.c
 cache.c
 cf-i386lynx.c
@@ -88,6 +97,7 @@ configure.in
 core.c
 cpu-a29k.c
 cpu-alpha.c
+cpu-arm.c
 cpu-h8300.c
 cpu-h8500.c
 cpu-hppa.c
@@ -104,7 +114,6 @@ cpu-sparc.c
 cpu-vax.c
 cpu-we32k.c
 cpu-z8k.c
-ctor.c
 demo64.c
 dep-in.sed
 doc
@@ -145,6 +154,7 @@ i386aout.c
 i386bsd.c
 i386dynix.c
 i386linux.c
+i386netbsd.c
 i386lynx.c
 i386mach3.c
 i386os9k.c
@@ -166,12 +176,12 @@ liboasys.h
 linker.c
 lynx-core.c
 m68klynx.c
+m68knetbsd.c
 m88kmach3.c
 makefile.dos
 mipsbsd.c
 newsos3.c
-netbsd386.c
-netbsd532.c
+netbsd.h
 nlm-target.h
 nlm.c
 nlm32-alpha.c
@@ -182,6 +192,7 @@ nlm32.c
 nlm64.c
 nlmcode.h
 nlmswap.h
+ns32knetbsd.c
 oasys.c
 opncls.c
 osf-core.c
@@ -189,11 +200,13 @@ pc532-mach.c
 ptrace-core.c
 reloc.c
 reloc16.c
+riscix.c
 rs6000-core.c
 section.c
 som.c
 som.h
 sparclynx.c
+sparcnetbsd.c
 srec.c
 stab-syms.c
 sunos.c
@@ -207,7 +220,7 @@ Things-to-lose:
 
 Do-last:
 
-mpwfiles="coffswap.h"
+mpwfiles="ecoffswap.h coffswap.h"
 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
        if [ -n "${verbose}" ] ; then
                echo Keeping mpw stuff in $mpwfiles.
@@ -250,4 +263,38 @@ else
        done
 fi
 
+r16_files = "ChangeLog archures.c config.bfd configure.in targets.c"
+if ( echo $* | grep keep\-r16 > /dev/null ) ; then
+       for i in $r16_files ; do
+               if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping r16 stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $r16_files ; do
+               if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"r16\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new
+                       if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+                               if [ -n "${verbose}" ] ; then
+                                       echo Caching $i in .Recover...
+                               fi
+                               mv $i .Recover
+                       fi
+                       mv new $i
+               fi
+       done
+fi
+
+for i in * ; do
+       if test ! -d $i && (grep sanitize $i > /dev/null) ; then
+               echo '***' Some mentions of Sanitize are still left in $i! 1>&2
+       fi
+done
+
 # End of file.
This page took 0.025221 seconds and 4 git commands to generate.