1 # .Sanitize for devo/gdb.
3 # Each directory to survive it's way into a release will need a file
4 # like this one called "./.Sanitize". All keyword lines must exist,
5 # and must exist in the order specified by this file. Each directory
6 # in the tree will be processed, top down, in the following order.
8 # Hash started lines like this one are comments and will be deleted
9 # before anything else is done. Blank lines will also be squashed
12 # The lines between the "Do-first:" line and the "Things-to-keep:"
13 # line are executed as a /bin/sh shell script before anything else is
18 if ( echo $* | grep keep\-chill > /dev/null ) ; then
19 keep_these_too="ch-exp.y ch-lang.c ch-lang.h ch-typeprint.c ch-valprint.c"
22 # All files listed between the "Things-to-keep:" line and the
23 # "Files-to-sed:" line will be kept. All other files will be removed.
24 # Directories listed in this section will have their own Sanitize
25 # called. Directories not listed will be removed in their entirety
386 echo Thawing away the \"chill\"...
388 # Don't try to clean directories here, as the 'mv' command will fail.
389 # Also, grep fails on NFS mounted directories.
390 if ( echo $* | grep keep\-chill > /dev/null ) ; then
392 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
393 echo Keeping chill stuff in $i
398 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
399 echo Thawing the \"chill\" out of $i...
401 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
402 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
403 echo Caching $i in .Recover...
409 echo Thawing the \"chill\" out of Makefile.in...
411 sed -e 's/$(srcdir)\/ch-exp.y//g' \
412 -e 's/${srcdir}\/ch-exp.y//g' \
414 -e 's/ch-exp.tab.c//g' \
415 -e 's/ch-exp.tab.o//g' \
416 -e 's/ch-lang.h//g' \
417 -e 's/ch-lang.c//g' \
418 -e 's/ch-lang.o//g' \
419 -e 's/ch-typeprint.c//g' \
420 -e 's/ch-typeprint.o//g' \
421 -e 's/ch-valprint.c//g' \
422 -e 's/ch-valprint.o//g' \
424 if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
425 echo Caching Makefile.in in .Recover...
426 mv Makefile.in .Recover