]> Git Repo - binutils.git/blobdiff - gdb/.Sanitize
* c-exp.y, m2-exp.y: Migrate code that has nothing to do with
[binutils.git] / gdb / .Sanitize
index 0f8d4a44a66625c5ddd7aa31c7faf81aa7c1b393..f0be8cd9692eea0b3bd72a8ac6ab4ff148ec1397 100644 (file)
 
 Do-first:
 
+if ( echo $* | grep keep\-chill > /dev/null ) ; then
+       keep_these_too="ch-exp.y ch-lang.c ch-lang.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
@@ -34,7 +38,7 @@ NEWS
 Projects
 README
 TODO
-a68v-xdep.c
+a68v-nat.c
 alldeps.mak
 alloca.c
 altos-xdep.c
@@ -51,6 +55,8 @@ breakpoint.h
 buildsym.c
 buildsym.h
 c-exp.y
+c-lang.c
+c-lang.h
 call-cmds.h
 coffread.c
 command.c
@@ -95,19 +101,20 @@ 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
 hppab-tdep.c
-hppab-xdep.c
+hppah-nat.c
 hppah-tdep.c
-hppah-xdep.c
 i386-pinsn.c
 i386-stub.c
 i386-tdep.c
-i386-xdep.c
 i386b-nat.c
 i386mach-nat.c
+i386v-nat.c
+i386v4-nat.c
 i387-tdep.c
 i960-pinsn.c
 i960-tdep.c
@@ -124,6 +131,8 @@ kdb-start.c
 language.c
 language.h
 m2-exp.y
+m2-lang.c
+m2-lang.h
 m68k-pinsn.c
 m68k-stub.c
 m68k-tdep.c
@@ -143,9 +152,18 @@ munch
 news-xdep.c
 nindy-share
 nindy-tdep.c
+nm-apollo68b.h
+nm-apollo68v.h
 nm-delta88.h
+nm-hp300bsd.h
+nm-hp300hpux.h
+nm-hppab.h
+nm-hppah.h
 nm-i386bsd.h
 nm-i386mach.h
+nm-i386sco.h
+nm-i386v.h
+nm-i386v4.h
 nm-irix3.h
 nm-irix4.h
 nm-linux.h
@@ -157,8 +175,11 @@ nm-sun2.h
 nm-sun3.h
 nm-sun386.h
 nm-sun4os4.h
+nm-sysv4.h
 nm-trash.h
 nm-ultra3.h
+nm-umax.h
+nm-vax.h
 ns32k-opcode.h
 ns32k-pinsn.c
 objfiles.c
@@ -344,4 +365,45 @@ xm-vaxult.h
 
 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' \
+           < 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.026334 seconds and 4 git commands to generate.