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
323 # Things which are explicitly *not* kept, for now.
324 # energize - Part of Lucid support.
325 # energize-patches - Part of Lucid support.
326 # energize.c - Part of Lucid support.
327 # energize.h - Part of Lucid support.
328 # remote-sa.sparc.c - Remote target for a standalone SPARC, using
329 # the FORTH console ROMs. We never got the paperwork
330 # straight, since Sun's lawyers messed with the
331 # FSF contract and RMS didn't accept the changes.
332 # Written at SunLabs.
333 # state.c - Not used at the moment, keep for reference (fnf)
334 # state.h - Not used at the moment, keep for reference (fnf)
348 echo Removing traces of \"mpw\"...
350 # Don't try to clean directories here, as the 'mv' command will fail.
351 # Also, grep fails on NFS mounted directories.
352 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
354 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
355 echo Keeping mpw stuff in $i
360 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
361 echo Removing traces of \"mpw\" out of $i...
363 sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
364 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
365 echo Caching $i in .Recover...
373 echo Catering to RMS by removing traces of \"gdbtk\"...
375 # Don't try to clean directories here, as the 'mv' command will fail.
376 # Also, grep fails on NFS mounted directories.
377 if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
379 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
380 echo Keeping gdbtk stuff in $i
385 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
386 echo Removing traces of \"gdbtk\" out of $i...
388 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
389 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
390 echo Caching $i in .Recover...
398 r16_files="configure.in"
400 if ( echo $* | grep keep\-r16 > /dev/null ) ; then
401 for i in $r16_files ; do
402 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
403 if [ -n "${verbose}" ] ; then
404 echo Keeping r16 stuff in $i
409 for i in $r16_files ; do
410 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
411 if [ -n "${verbose}" ] ; then
412 echo Removing traces of \"r16\" from $i...
415 sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new
416 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
417 if [ -n "${verbose}" ] ; then
418 echo Caching $i in .Recover...
427 arc_files="configure.in"
429 if ( echo $* | grep keep\-arc > /dev/null ) ; then
430 for i in $arc_files ; do
431 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
432 if [ -n "${verbose}" ] ; then
433 echo Keeping arc stuff in $i
438 for i in $arc_files ; do
439 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
440 if [ -n "${verbose}" ] ; then
441 echo Removing traces of \"arc\" from $i...
444 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
445 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
446 if [ -n "${verbose}" ] ; then
447 echo Caching $i in .Recover...
457 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
458 echo '***' Some mentions of Sanitize are still left in $i! 1>&2