1 # .Sanitize for devo/gdb.
3 # Each directory to survive its 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
14 # done in this directory.
18 mpw_files="mpw-config.in mpw-make.in ser-mac.c mac-xdep.c mac-defs.h macgdb.r ChangeLog.mpw"
20 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
21 keep_these_too="${mpw_files} ${keep_these_too}"
22 if [ -n "${verbose}" ] ; then
23 echo Keeping ${mpw_files}
26 lose_these_too="${mpw_files} ${lose_these_too}"
27 if [ -n "${verbose}" ] ; then
28 echo Deleting ${mpw_files}
32 gm_files="mpw-xconfig.in mpw-init.c ChangeLog.gm"
34 if ( echo $* | grep keep\-gm > /dev/null ) ; then
35 keep_these_too="${gm_files} ${keep_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Keeping ${gm_files}
40 lose_these_too="${gm_files} ${lose_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Deleting ${gm_files}
46 hpread_files="hpread.c ChangeLog.hpread"
48 if ( echo $* | grep keep\-hpread > /dev/null ) ; then
49 keep_these_too="${hpread_files} ${keep_these_too}"
50 if [ -n "${verbose}" ] ; then
51 echo Keeping ${hpread_files}
54 lose_these_too="${hpread_files} ${lose_these_too}"
55 if [ -n "${verbose}" ] ; then
56 echo Deleting ${hpread_files}
60 # All files listed between the "Things-to-keep:" line and the
61 # "Files-to-sed:" line will be kept. All other files will be removed.
62 # Directories listed in this section will have their own Sanitize
63 # called. Directories not listed will be removed in their entirety
341 # Things which are explicitly *not* kept, for now.
342 # energize - Part of Lucid support.
343 # energize-patches - Part of Lucid support.
344 # energize.c - Part of Lucid support.
345 # energize.h - Part of Lucid support.
346 # remote-sa.sparc.c - Remote target for a standalone SPARC, using
347 # the FORTH console ROMs. We never got the paperwork
348 # straight, since Sun's lawyers messed with the
349 # FSF contract and RMS didn't accept the changes.
350 # Written at SunLabs.
351 # state.c - Not used at the moment, keep for reference (fnf)
352 # state.h - Not used at the moment, keep for reference (fnf)
353 # tests - Old test programs for GDB, pre-gdbtest and pre-
369 echo Removing traces of \"mpw\"...
371 # Don't try to clean directories here, as the 'mv' command will fail.
372 # Also, grep fails on NFS mounted directories.
373 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
375 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
376 echo Keeping mpw stuff in $i
381 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
382 echo Removing traces of \"mpw\" out of $i...
384 sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
385 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
386 echo Caching $i in .Recover...
394 echo Removing traces of \"hpread\"...
396 # Don't try to clean directories here, as the 'mv' command will fail.
397 # Also, grep fails on NFS mounted directories.
398 if ( echo $* | grep keep\-hpread > /dev/null ) ; then
400 if test ! -d $i && (grep sanitize-hpread $i > /dev/null) ; then
401 echo Keeping hpread stuff in $i
406 if test ! -d $i && (grep sanitize-hpread $i > /dev/null) ; then
407 echo Removing traces of \"hpread\" out of $i...
409 sed '/start\-sanitize\-hpread/,/end-\sanitize\-hpread/d' < $i > new
410 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
411 echo Caching $i in .Recover...