use remote-utils facilities for baud_rate
[deliverable/binutils-gdb.git] / gdb / .Sanitize
index 40049b72cc35bb91f5f6398ce72b28da9684d032..0242d95de742ab900dc5effb2dd1ed5170c1294a 100644 (file)
 
 Do-first:
 
+if ( echo $* | grep keep\-v9 > /dev/null ) ; then
+       keep_these_too="sp64-tdep.c remote-sp64sim.c remote-sim.h"
+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,12 +39,10 @@ NEWS
 Projects
 README
 TODO
-a68v-nat.c
-alldeps.mak
-alloca.c
-altos-xdep.c
 a29k-pinsn.c
 a29k-tdep.c
+a68v-nat.c
+altos-xdep.c
 arm-convert.s
 arm-pinsn.c
 arm-tdep.c
@@ -73,16 +75,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
-depend
 doc
+dpx2-nat.c
 dwarfread.c
 elfread.c
 environ.c
@@ -99,6 +104,7 @@ gdb-stabs.h
 gdb.1
 gdbcmd.h
 gdbcore.h
+gdbserver
 gdbtypes.c
 gdbtypes.h
 go32-xdep.c
@@ -114,7 +120,9 @@ hppah-nat.c
 i386-pinsn.c
 i386-stub.c
 i386-tdep.c
+i386aix-nat.c
 i386b-nat.c
+i386lynx-nat.c
 i386mach-nat.c
 i386v-nat.c
 i386v4-nat.c
@@ -128,6 +136,7 @@ infptrace.c
 infrun.c
 inftarg.c
 irix4-nat.c
+isi-xdep.c
 kdb-start.c
 language.c
 language.h
@@ -156,6 +165,7 @@ munch
 news-xdep.c
 nindy-share
 nindy-tdep.c
+nlmread.c
 ns32k-opcode.h
 ns32k-pinsn.c
 objfiles.c
@@ -174,15 +184,16 @@ regex.c
 regex.h
 rem-multi.shar
 remote-adapt.c
+remote-bug.c
 remote-eb.c
-remote-es1800.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-st2000.c
+remote-st.c
 remote-udi.c
 remote-vx.c
 remote-z8k.c
@@ -215,8 +226,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 +236,8 @@ target.c
 target.h
 terminal.h
 testsuite
+thread.c
+thread.h
 typeprint.c
 typeprint.h
 ultra3-nat.c
@@ -254,6 +267,8 @@ z8k-tdep.c
 # energize-patches     - Part of Lucid support.
 # energize.c           - Part of Lucid support.
 # energize.h           - Part of Lucid support.
+# i386-nlmstub.c       - i386 NLM stub, not yet distributable because
+#                        it contains Novell proprietary code.
 # infrun.hacked.c      - An old version of infrun.c that had some 
 #                        wait_for_inferior improvements by gnu,
 #                        which were never fully debugged.
@@ -274,6 +289,7 @@ energize
 energize-patches
 energize.c
 energize.h
+i386-nlmstub.c
 infrun.hacked.c
 remote-sa.sparc.c
 state.c
@@ -282,4 +298,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.024672 seconds and 4 git commands to generate.