1 # .Sanitize for devo/sim/v850.
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 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
44 v850e_files="interp.c simops.c v850.igen v850-dc ChangeLog sim-main.h"
45 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
46 for i in $v850e_files ; do
47 if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
48 if [ -n "${verbose}" ] ; then
49 echo Keeping v850e stuff in $i
54 for i in $v850e_files ; do
55 if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
56 if [ -n "${verbose}" ] ; then
57 echo Removing traces of \"v850e\" from $i...
60 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
61 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
62 if [ -n "${verbose}" ] ; then
63 echo Caching $i in .Recover...