1 # .Sanitize for devo/sim/mn10300.
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 am33_files="am33.igen"
19 if ( echo $* | grep keep\-am33 > /dev/null ) ; then
20 keep_these_too="${am33_files} ${keep_these_too}"
22 lose_these_too="${am33_files} ${lose_these_too}"
25 am30_files="dv-mn103cpu.c dv-mn103int.c dv-mn103tim.c dv-mn103ser.c dv-mn103iop.c"
26 if ( echo $* | grep keep\-am30 > /dev/null ) ; then
27 keep_these_too="${am30_files} ${keep_these_too}"
29 lose_these_too="${am30_files} ${lose_these_too}"
32 # All files listed between the "Things-to-keep:" line and the
33 # "Files-to-sed:" line will be kept. All other files will be removed.
34 # Directories listed in this section will have their own Sanitize
35 # called. Directories not listed will be removed in their entirety
60 am30_files="ChangeLog interp.c configure configure.in"
61 if ( echo $* | grep keep\-am30 > /dev/null ) ; then
62 for i in $am30_files ; do
63 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
64 if [ -n "${verbose}" ] ; then
65 echo Keeping am30 stuff in $i
70 for i in $am30_files ; do
71 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
72 if [ -n "${verbose}" ] ; then
73 echo Removing traces of \"am30\" from $i...
76 sed '/start\-sanitize\-am30/,/end-\sanitize\-am30/d' < $i > new
77 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
78 if [ -n "${verbose}" ] ; then
79 echo Caching $i in .Recover...
88 am33_files="ChangeLog mn10300_sim.h mn10300.igen Makefile.in"
89 if ( echo $* | grep keep\-am33 > /dev/null ) ; then
90 for i in $am33_files ; do
91 if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
92 if [ -n "${verbose}" ] ; then
93 echo Keeping am33 stuff in $i
98 for i in $am33_files ; do
99 if test ! -d $i && (grep sanitize-am33 $i > /dev/null) ; then
100 if [ -n "${verbose}" ] ; then
101 echo Removing traces of \"am33\" from $i...
104 sed '/start\-sanitize\-am33/,/end-\sanitize\-am33/d' < $i > new
105 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
106 if [ -n "${verbose}" ] ; then
107 echo Caching $i in .Recover...