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 # mswin gdb is not really gdbtk, but is close enough for now.
34 gdbtk_files="gdbtk.c gdbtk.tcl mswin"
36 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
37 lose_these_too="${gdbtk_files} ${lose_these_too}"
38 if [ -n "${verbose}" ] ; then
39 echo Deleting ${gdbtk_files}
42 keep_these_too="${gdbtk_files} ${keep_these_too}"
43 if [ -n "${verbose}" ] ; then
44 echo Keeping ${gdbtk_files}
48 # All files listed between the "Things-to-keep:" line and the
49 # "Files-to-sed:" line will be kept. All other files will be removed.
50 # Directories listed in this section will have their own Sanitize
51 # called. Directories not listed will be removed in their entirety
324 # Things which are explicitly *not* kept, for now.
325 # energize - Part of Lucid support.
326 # energize-patches - Part of Lucid support.
327 # energize.c - Part of Lucid support.
328 # energize.h - Part of Lucid support.
329 # remote-sa.sparc.c - Remote target for a standalone SPARC, using
330 # the FORTH console ROMs. We never got the paperwork
331 # straight, since Sun's lawyers messed with the
332 # FSF contract and RMS didn't accept the changes.
333 # Written at SunLabs.
334 # state.c - Not used at the moment, keep for reference (fnf)
335 # state.h - Not used at the moment, keep for reference (fnf)
353 echo Removing traces of \"mpw\"...
355 # Don't try to clean directories here, as the 'mv' command will fail.
356 # Also, grep fails on NFS mounted directories.
357 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
359 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
360 echo Keeping mpw stuff in $i
365 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
366 echo Removing traces of \"mpw\" out of $i...
368 sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
369 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
370 echo Caching $i in .Recover...
378 echo Catering to RMS by removing traces of \"gdbtk\"...
380 # Don't try to clean directories here, as the 'mv' command will fail.
381 # Also, grep fails on NFS mounted directories.
382 if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
384 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
385 echo Keeping gdbtk stuff in $i
390 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
391 echo Removing traces of \"gdbtk\" out of $i...
393 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
394 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
395 echo Caching $i in .Recover...
403 r16_files="configure.in"
405 if ( echo $* | grep keep\-r16 > /dev/null ) ; then
406 for i in $r16_files ; do
407 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
408 if [ -n "${verbose}" ] ; then
409 echo Keeping r16 stuff in $i
414 for i in $r16_files ; do
415 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
416 if [ -n "${verbose}" ] ; then
417 echo Removing traces of \"r16\" from $i...
420 sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new
421 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
422 if [ -n "${verbose}" ] ; then
423 echo Caching $i in .Recover...
432 arc_files="configure.in ChangeLog"
434 if ( echo $* | grep keep\-arc > /dev/null ) ; then
435 for i in $arc_files ; do
436 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
437 if [ -n "${verbose}" ] ; then
438 echo Keeping arc stuff in $i
443 for i in $arc_files ; do
444 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
445 if [ -n "${verbose}" ] ; then
446 echo Removing traces of \"arc\" from $i...
449 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
450 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
451 if [ -n "${verbose}" ] ; then
452 echo Caching $i in .Recover...
462 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
463 echo '***' Some mentions of Sanitize are still left in $i! 1>&2