* breakpoint.c, breakpoint.h (breakpoint_init_inferior): New function
[deliverable/binutils-gdb.git] / gdb / .Sanitize
index a770ebf9ec780bb1160b425fbadf29f8bca9cd5f..7fe98075693117b1278fc071fdab6af3266a2dc4 100644 (file)
 
 Do-first:
 
+if ( echo $* | grep keep\-v9 > /dev/null ) ; then
+       keep_these_too="sp64-tdep.c"
+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
@@ -35,10 +39,12 @@ NEWS
 Projects
 README
 TODO
-a68v-nat.c
-altos-xdep.c
 a29k-pinsn.c
 a29k-tdep.c
+a68v-nat.c
+alpha-nat.c
+alpha-tdep.c
+altos-xdep.c
 arm-convert.s
 arm-pinsn.c
 arm-tdep.c
@@ -59,6 +65,8 @@ ch-lang.c
 ch-lang.h
 ch-typeprint.c
 ch-valprint.c
+coff-solib.c
+coff-solib.h
 coffread.c
 command.c
 command.h
@@ -71,15 +79,19 @@ convex-tdep.c
 convex-xdep.c
 copying.awk
 copying.c
+core-svr4.c
 core.c
 coredep.c
 corelow.c
-core-svr4.c
 cp-valprint.c
 dbxread.c
+dcache.c
+dcache.h
 defs.h
+delta68-nat.c
 demangle.c
 doc
+dpx2-nat.c
 dwarfread.c
 elfread.c
 environ.c
@@ -109,11 +121,14 @@ hppa-pinsn.c
 hppa-tdep.c
 hppab-nat.c
 hppah-nat.c
+i386-nlmstub.c
 i386-pinsn.c
 i386-stub.c
 i386-tdep.c
 i386aix-nat.c
 i386b-nat.c
+i386ly-tdep.c
+i386lynx-nat.c
 i386mach-nat.c
 i386v-nat.c
 i386v4-nat.c
@@ -156,10 +171,12 @@ munch
 news-xdep.c
 nindy-share
 nindy-tdep.c
+nlmread.c
 ns32k-opcode.h
 ns32k-pinsn.c
 objfiles.c
 objfiles.h
+osfsolib.c
 paread.c
 parse.c
 parser-defs.h
@@ -174,16 +191,20 @@ regex.c
 regex.h
 rem-multi.shar
 remote-adapt.c
+remote-bug.c
 remote-eb.c
 remote-es.c
 remote-hms.c
 remote-mips.c
 remote-mm.c
-remote-monitor.c
+remote-mon.c
 remote-nindy.c
 remote-sim.c
+remote-sim.h
 remote-st.c
 remote-udi.c
+remote-utils.c
+remote-utils.h
 remote-vx.c
 remote-z8k.c
 remote.c
@@ -215,8 +236,8 @@ sun3-nat.c
 sun386-nat.c
 symfile.c
 symfile.h
+symm-nat.c
 symm-tdep.c
-symm-xdep.c
 symmisc.c
 symtab.c
 symtab.h
@@ -225,6 +246,8 @@ target.c
 target.h
 terminal.h
 testsuite
+thread.c
+thread.h
 typeprint.c
 typeprint.h
 ultra3-nat.c
@@ -282,4 +305,29 @@ tests
 
 Do-last:
 
+echo Looking for signs of \"v9\"...
+
+# Don't try to clean directories here, as the 'mv' command will fail.
+# Also, grep fails on NFS mounted directories.
+if ( echo $* | grep keep\-v9 > /dev/null ) ; then
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
+                       echo Keeping v9 stuff in $i
+               fi
+       done
+else
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
+                       echo Cleaning the \"v9\" out of $i...
+                       cp $i new
+                       sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
+                       if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+                               echo Caching $i in .Recover...
+                               mv $i .Recover
+                       fi
+                       mv new $i
+               fi
+       done
+fi
+
 # End of file.
This page took 0.024894 seconds and 4 git commands to generate.