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 gdbtk_files="gdbtk.c gdbtk.tcl"
34 if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
35 keep_these_too="${gdbtk_files} ${keep_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Keeping ${gdbtk_files}
40 lose_these_too="${gdbtk_files} ${lose_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Deleting ${gdbtk_files}
46 # All files listed between the "Things-to-keep:" line and the
47 # "Files-to-sed:" line will be kept. All other files will be removed.
48 # Directories listed in this section will have their own Sanitize
49 # called. Directories not listed will be removed in their entirety
333 # Things which are explicitly *not* kept, for now.
334 # energize - Part of Lucid support.
335 # energize-patches - Part of Lucid support.
336 # energize.c - Part of Lucid support.
337 # energize.h - Part of Lucid support.
338 # remote-sa.sparc.c - Remote target for a standalone SPARC, using
339 # the FORTH console ROMs. We never got the paperwork
340 # straight, since Sun's lawyers messed with the
341 # FSF contract and RMS didn't accept the changes.
342 # Written at SunLabs.
343 # state.c - Not used at the moment, keep for reference (fnf)
344 # state.h - Not used at the moment, keep for reference (fnf)
358 echo Removing traces of \"mpw\"...
360 # Don't try to clean directories here, as the 'mv' command will fail.
361 # Also, grep fails on NFS mounted directories.
362 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
364 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
365 echo Keeping mpw stuff in $i
370 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
371 echo Removing traces of \"mpw\" out of $i...
373 sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
374 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
375 echo Caching $i in .Recover...
383 echo Catering to RMS by removing traces of \"gdbtk\"...
385 # Don't try to clean directories here, as the 'mv' command will fail.
386 # Also, grep fails on NFS mounted directories.
387 if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
389 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
390 echo Keeping gdbtk stuff in $i
395 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
396 echo Removing traces of \"gdbtk\" out of $i...
398 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
399 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
400 echo Caching $i in .Recover...
408 r16_files="configure.in"
410 if ( echo $* | grep keep\-r16 > /dev/null ) ; then
411 for i in $r16_files ; do
412 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
413 if [ -n "${verbose}" ] ; then
414 echo Keeping r16 stuff in $i
419 for i in $r16_files ; do
420 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
421 if [ -n "${verbose}" ] ; then
422 echo Removing traces of \"r16\" from $i...
425 sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new
426 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
427 if [ -n "${verbose}" ] ; then
428 echo Caching $i in .Recover...
438 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
439 echo '***' Some mentions of Sanitize are still left in $i! 1>&2