* corelow.c, exec.c, inftarg.c, m3-nat.c, op50-rom.c, procfs.c,
[deliverable/binutils-gdb.git] / gdb / .Sanitize
index 5fd93f08eddd014c7da3f1a98fdbcd7a981a1e88..7f457365ba0a4a97dedb94bf02eb85fb7edeb444 100644 (file)
@@ -15,7 +15,7 @@
 
 Do-first:
 
-mpw_files="mpw-config.in mpw-make.in ser-mac.c mac-xdep.c mac-defs.h macgdb.r ChangeLog.mpw"
+mpw_files="mpw-config.in mpw-make.in ser-mac.c mac-xdep.c mac-defs.h macgdb.r mpw-init.c ChangeLog.mpw"
 
 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
        keep_these_too="${mpw_files} ${keep_these_too}"
@@ -29,17 +29,17 @@ else
        fi
 fi
 
-gm_files="mpw-xconfig.in mpw-init.c ChangeLog.gm"
+hpread_files="hpread.c ChangeLog.hpread"
 
-if ( echo $* | grep keep\-mpw > /dev/null ) ; then
-       keep_these_too="${gm_files} ${keep_these_too}"
+if ( echo $* | grep keep\-hpread > /dev/null ) ; then
+       keep_these_too="${hpread_files} ${keep_these_too}"
        if [ -n "${verbose}" ] ; then
-               echo Keeping ${gm_files}
+               echo Keeping ${hpread_files}
        fi
 else
-       lose_these_too="${gm_files} ${lose_these_too}"
+       lose_these_too="${hpread_files} ${lose_these_too}"
        if [ -n "${verbose}" ] ; then
-               echo Deleting ${gm_files}
+               echo Deleting ${hpread_files}
        fi
 fi
 
@@ -61,7 +61,6 @@ ChangeLog-92
 ChangeLog-93
 Makefile.in
 NEWS
-Projects
 README
 TODO
 a29k-pinsn.c
@@ -112,6 +111,7 @@ core.c
 coredep.c
 corelow.c
 cp-valprint.c
+cxux-nat.c
 dbxread.c
 dcache.c
 dcache.h
@@ -130,6 +130,11 @@ eval.c
 exec.c
 expprint.c
 expression.h
+f-exp.y
+f-lang.c
+f-lang.h
+f-typeprint.c
+f-valprint.c
 findvar.c
 fork-child.c
 frame.h
@@ -140,6 +145,8 @@ gdba.el
 gdbcmd.h
 gdbcore.h
 gdbserver
+gdbtk.c
+gdbtk.tcl
 gdbtypes.c
 gdbtypes.h
 go32-xdep.c
@@ -152,7 +159,6 @@ hppa-pinsn.c
 hppa-tdep.c
 hppab-nat.c
 hppah-nat.c
-i386-nlmstub.c
 i386-pinsn.c
 i386-stub.c
 i386-tdep.c
@@ -204,15 +210,17 @@ mipsm3-nat.c
 mipsv4-nat.c
 mipsread.c
 monitor.h
+monitor.c
 news-xdep.c
 nindy-share
 nindy-tdep.c
+nlm
 nlmread.c
-ns32k-opcode.h
 ns32k-pinsn.c
 ns32km3-nat.c
 objfiles.c
 objfiles.h
+op50-rom.c
 os9kread.c
 osfsolib.c
 parse.c
@@ -238,6 +246,7 @@ remote-mm.c
 remote-mon.c
 remote-nindy.c
 remote-os9k.c
+remote-pa.c
 remote-sim.c
 remote-sim.h
 remote-st.c
@@ -251,6 +260,7 @@ rs6000-nat.c
 rs6000-pinsn.c
 rs6000-tdep.c
 saber.suppress
+ser-e7kpc.c
 ser-go32.c
 ser-tcp.c
 ser-unix.c
@@ -308,7 +318,7 @@ value.h
 values.c
 vax-pinsn.c
 vx-share
-xcoffexec.c
+w89k-rom.c
 xcoffread.c
 xcoffsolib.c
 xcoffsolib.h
@@ -316,9 +326,6 @@ z8k-tdep.c
 
 
 # Things which are explicitly *not* kept, for now.
-# deblib/              - CVS won't let you blow away directories yet,
-#                        so this is still around from when Stu checked
-#                        it in, as part of Lucid support.
 # energize             - Part of Lucid support.
 # energize-patches     - Part of Lucid support.
 # energize.c           - Part of Lucid support.
@@ -330,12 +337,9 @@ z8k-tdep.c
 #                        Written at SunLabs.
 # state.c              - Not used at the moment, keep for reference (fnf)
 # state.h              - Not used at the moment, keep for reference (fnf)
-# tests                        - Old test programs for GDB, pre-gdbtest and pre-
-#                        DejaGnu.
 
 Things-to-lose:
 
-deblib
 energize
 energize-patches
 energize.c
@@ -343,7 +347,6 @@ energize.h
 remote-sa.sparc.c
 state.c
 state.h
-tests
 
 Do-last:
 
@@ -372,4 +375,30 @@ else
        done
 fi
 
+echo Removing traces of \"hpread\"...
+
+# Don't try to clean directories here, as the 'mv' command will fail.
+# Also, grep fails on NFS mounted directories.
+if ( echo $* | grep keep\-hpread > /dev/null ) ; then
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-hpread $i > /dev/null) ; then
+                       echo Keeping hpread stuff in $i
+               fi
+       done
+else
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-hpread $i > /dev/null) ; then
+                       echo Removing traces of \"hpread\" out of $i...
+                       cp $i new
+                       sed '/start\-sanitize\-hpread/,/end-\sanitize\-hpread/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.025879 seconds and 4 git commands to generate.