ns32k port from Ian Dall
[binutils-gdb.git] / ld / .Sanitize
index 7b212e60cb1acf715c7b7a6a1d9e01dc2e936309..7f36d07925a7dde04a19f365304008bc5c3451b0 100644 (file)
@@ -1,8 +1,6 @@
-# Sanitize.in for devo.
-# $Id$
-#
+# .Sanitize for devo/ld.
 
-# Each directory to survive it's way into a release will need a file
+# Each directory to survive its way into a release will need a file
 # like this one called "./.Sanitize".  All keyword lines must exist,
 # and must exist in the order specified by this file.  Each directory
 # in the tree will be processed, top down, in the following order.
 
 # The lines between the "Do-first:" line and the "Things-to-keep:"
 # line are executed as a /bin/sh shell script before anything else is
-# done in this
+# done in this directory.
 
 Do-first:
 
-if ( echo $* | grep keep\-v9 > /dev/null ) ; then
-       keep_these_too=""
+mpw_files="mpw-make.in mpw-config.in ChangeLog.mpw"
+
+if ( echo $* | grep keep\-mpw > /dev/null ) ; then
+       keep_these_too="${mpw_files} ${keep_these_too}"
+else
+       lose_these_too="${mpw_files} ${lose_these_too}"
+fi
+
+if ( echo $* | grep keep\-gm > /dev/null ) ; then
+       keep_these_too="mpw-xconfig.in mpw-em.c ChangeLog.gm ${keep_these_too}"
+else
+       lose_these_too="mpw-xconfig.in mpw-em.c ChangeLog.gm ${lose_these_too}"
 fi
 
 # All files listed between the "Things-to-keep:" line and the
@@ -36,13 +44,14 @@ README
 TODO
 cdtest-foo.cc
 cdtest-foo.h
-cdtest-func.cc
+cdtest-bar.cc
 cdtest-main.cc
 cdtest.exp
 config
 config.h
 configure.bat
 configure.in
+dep-in.sed
 emulparams
 emultempl
 genscripts.sh
@@ -55,15 +64,11 @@ ldctor.c
 ldctor.h
 ldemul.c
 ldemul.h
-lderror.c
-lderror.h
 ldexp.c
 ldexp.h
 ldfile.c
 ldfile.h
 ldgram.y
-ldindr.c
-ldindr.h
 ldint.texinfo
 ldlang.c
 ldlang.h
@@ -73,41 +78,36 @@ ldmain.c
 ldmain.h
 ldmisc.c
 ldmisc.h
-ldsym.c
-ldsym.h
 ldver.c
 ldver.h
-ldwarn.c
-ldwarn.h
 ldwrite.c
 ldwrite.h
 lexsup.c
 mri.c
 mri.h
-relax.c
-relax.h
 scripttempl
+testsuite
 
 Things-to-lose:
 
 Do-last:
 
-echo Looking for signs of \"v9\"...
+echo Looking for traces of \"mpw\"...
 
 # Don't try to clean directories here, as the 'mv' command will fail.
 # Also, grep fails on NFS mounted directories.
-if ( echo $* | grep keep\-v9 > /dev/null ) ; then
+if ( echo $* | grep keep\-mpw > /dev/null ) ; then
        for i in * ; do
-               if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
-                       echo Keeping v9 stuff in $i
+               if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
+                       echo Keeping mpw traces in $i
                fi
        done
 else
        for i in * ; do
-               if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
-                       echo Cleaning the \"v9\" out of $i...
+               if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
+                       echo Removing traces of \"mpw\" out of $i...
                        cp $i new
-                       sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
+                       sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
                        if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
                                echo Caching $i in .Recover...
                                mv $i .Recover