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
Projects
README
TODO
-a68v-xdep.c
+a68v-nat.c
alldeps.mak
alloca.c
altos-xdep.c
buildsym.c
buildsym.h
c-exp.y
+c-lang.c
+c-lang.h
call-cmds.h
coffread.c
command.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
language.c
language.h
m2-exp.y
+m2-lang.c
+m2-lang.h
m68k-pinsn.c
m68k-stub.c
m68k-tdep.c
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
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
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.