Lint fixes from Paul Eggert (eggert@twinsun.com):
[deliverable/binutils-gdb.git] / gdb / .Sanitize
index c808cb6f6c3644ffbed77f91aaa00e98d41019e0..d2336a6c9bfff598cf7b158fce85b34e6d95fa03 100644 (file)
 
 Do-first:
 
+if ( echo $* | grep keep\-chill > /dev/null ) ; then
+       keep_these_too="ch-exp.y ch-lang.c ch-lang.h ch-typeprint.c ch-valprint.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
@@ -24,6 +28,7 @@ Do-first:
 Things-to-keep:
 
 .gdbinit
+29k-share
 COPYING
 ChangeLog
 ChangeLog-3.x
@@ -34,11 +39,10 @@ NEWS
 Projects
 README
 TODO
-a68v-xdep.c
+a68v-nat.c
 alldeps.mak
 alloca.c
 altos-xdep.c
-am29k-opcode.h
 am29k-pinsn.c
 am29k-tdep.c
 arm-convert.s
@@ -51,21 +55,27 @@ breakpoint.h
 buildsym.c
 buildsym.h
 c-exp.y
+c-lang.c
+c-lang.h
+c-typeprint.c
+c-valprint.c
 call-cmds.h
 coffread.c
 command.c
 command.h
+complaints.c
+complaints.h
 config
 configure.in
 convex-pinsn.c
 convex-tdep.c
 convex-xdep.c
-convx-opcode.h
 copying.awk
 copying.c
 core.c
 coredep.c
 corelow.c
+cp-valprint.c
 createtags
 dbxread.c
 defs.h
@@ -90,12 +100,11 @@ gdbcmd.h
 gdbcore.h
 gdbtypes.c
 gdbtypes.h
-go32-nat.c
 go32-xdep.c
 gould-pinsn.c
 gould-xdep.c
 h8300-tdep.c
-hp300ux-xdep.c
+hp300ux-nat.c
 hppa-pinsn.c
 hppab-core.c
 hppab-nat.c
@@ -125,6 +134,10 @@ kdb-start.c
 language.c
 language.h
 m2-exp.y
+m2-lang.c
+m2-lang.h
+m2-typeprint.c
+m2-valprint.c
 m68k-pinsn.c
 m68k-stub.c
 m68k-tdep.c
@@ -144,12 +157,16 @@ munch
 news-xdep.c
 nindy-share
 nindy-tdep.c
-nm-delta88.h
+nm-apollo68b.h
+nm-apollo68v.h
+nm-hp300bsd.h
+nm-hp300hpux.h
 nm-hppab.h
 nm-hppah.h
 nm-i386bsd.h
 nm-i386mach.h
 nm-i386sco.h
+nm-i386sco4.h
 nm-i386v.h
 nm-i386v4.h
 nm-irix3.h
@@ -167,11 +184,12 @@ nm-sysv4.h
 nm-trash.h
 nm-ultra3.h
 nm-umax.h
+nm-vax.h
 ns32k-opcode.h
 ns32k-pinsn.c
 objfiles.c
 objfiles.h
-os68k-xdep.c
+paread.c
 parse.c
 parser-defs.h
 partial-stab.h
@@ -188,10 +206,14 @@ remote-adapt.c
 remote-eb.c
 remote-es1800.c
 remote-hms.c
+remote-mips.c
 remote-mm.c
 remote-nindy.c
+remote-sim.c
 remote-st2000.c
+remote-udi.c
 remote-vx.c
+remote-z8k.c
 remote.c
 rs6000-nat.c
 rs6000-pinsn.c
@@ -209,6 +231,7 @@ sparc-nat.c
 sparc-pinsn.c
 sparc-stub.c
 sparc-tdep.c
+sparclite
 stabsread.c
 stabsread.h
 stack.c
@@ -283,6 +306,9 @@ tm-umax.h
 tm-vax.h
 tm-vx68.h
 tm-vx960.h
+tm-z8k.h
+typeprint.c
+typeprint.h
 ultra3-nat.c
 ultra3-xdep.c
 umax-xdep.c
@@ -290,6 +316,7 @@ utils.c
 valarith.c
 valops.c
 valprint.c
+valprint.h
 value.h
 values.c
 vax-pinsn.c
@@ -349,7 +376,54 @@ xm-umax.h
 xm-vax.h
 xm-vaxbsd.h
 xm-vaxult.h
+xm-vaxult2.h
+z8k-tdep.c
 
 Do-last:
 
+echo Thawing away the \"chill\"...
+
+# Don't try to clean directories here, as the 'mv' command will fail.
+# Also, grep fails on NFS mounted directories.
+if ( echo $* | grep keep\-chill > /dev/null ) ; then
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
+                       echo Keeping chill stuff in $i
+               fi
+       done
+else
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
+                       echo Thawing the \"chill\" out of $i...
+                       cp $i new
+                       sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/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
+       echo Thawing the \"chill\" out of Makefile.in...
+       cp Makefile.in new
+       sed -e 's/$(srcdir)\/ch-exp.y//g' \
+           -e 's/${srcdir}\/ch-exp.y//g' \
+           -e 's/ch-exp.y//g' \
+           -e 's/ch-exp.tab.c//g' \
+           -e 's/ch-exp.tab.o//g' \
+           -e 's/ch-lang.h//g' \
+           -e 's/ch-lang.c//g' \
+           -e 's/ch-lang.o//g' \
+           -e 's/ch-typeprint.c//g' \
+           -e 's/ch-typeprint.o//g' \
+           -e 's/ch-valprint.c//g' \
+           -e 's/ch-valprint.o//g' \
+           < Makefile.in > new
+       if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
+               echo Caching Makefile.in in .Recover...
+               mv Makefile.in .Recover
+       fi
+       mv new Makefile.in
+fi
+
 # End of file.
This page took 0.025148 seconds and 4 git commands to generate.