1 # .Sanitize for devo/sim.
3 # Each directory to survive it's 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
20 d30v_files="d30v testsuite"
21 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
22 keep_these_too="${d30v_files} ${igen_files} ${keep_these_too}"
25 lose_these_too="${d30v_files} ${lose_these_too}"
29 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
30 keep_these_too="${tic80_files} ${igen_files} ${keep_these_too}"
33 lose_these_too="${tic80_files} ${lose_these_too}"
37 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
38 keep_these_too="${v850_files} ${keep_these_too}"
40 lose_these_too="${v850_files} ${lose_these_too}"
43 lose_these_too="${igen_files} ${lose_these_too}"
45 # All files listed between the "Things-to-keep:" line and the
46 # "Files-to-sed:" line will be kept. All other files will be removed.
47 # Directories listed in this section will have their own Sanitize
48 # called. Directories not listed will be removed in their entirety
79 d30v_files="configure configure.in ChangeLog"
80 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
81 for i in $d30v_files ; do
82 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
83 if [ -n "${verbose}" ] ; then
84 echo Keeping d30v stuff in $i
89 for i in $d30v_files ; do
90 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
91 if [ -n "${verbose}" ] ; then
92 echo Removing traces of \"d30v\" from $i...
95 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
96 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
97 if [ -n "${verbose}" ] ; then
98 echo Caching $i in .Recover...
107 tic80_files="configure configure.in ChangeLog"
108 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
109 for i in $tic80_files ; do
110 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
111 if [ -n "${verbose}" ] ; then
112 echo Keeping tic80 stuff in $i
117 for i in $tic80_files ; do
118 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
119 if [ -n "${verbose}" ] ; then
120 echo Removing traces of \"tic80\" from $i...
123 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
124 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
125 if [ -n "${verbose}" ] ; then
126 echo Caching $i in .Recover...
135 v850_files="configure configure.in ChangeLog"
136 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
137 for i in $v850_files ; do
138 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
139 if [ -n "${verbose}" ] ; then
140 echo Keeping v850 stuff in $i
145 for i in $v850_files ; do
146 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
147 if [ -n "${verbose}" ] ; then
148 echo Removing traces of \"v850\" from $i...
151 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
152 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
153 if [ -n "${verbose}" ] ; then
154 echo Caching $i in .Recover...
164 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
165 echo '***' Some mentions of Sanitize are still left in $i! 1>&2