1 # .Sanitize for devo/ld.
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
89 arc_files="ChangeLog configure.tgt Makefile.in"
91 if ( echo $* | grep keep\-arc > /dev/null ) ; then
92 for i in $arc_files ; do
93 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
94 if [ -n "${verbose}" ] ; then
95 echo Keeping arc stuff in $i
100 for i in $arc_files ; do
101 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
102 if [ -n "${verbose}" ] ; then
103 echo Removing traces of \"arc\" from $i...
106 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
107 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
108 if [ -n "${verbose}" ] ; then
109 echo Caching $i in .Recover...
118 v850_files="ChangeLog configure.tgt Makefile.in"
120 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
121 for i in $v850_files ; do
122 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
123 if [ -n "${verbose}" ] ; then
124 echo Keeping v850 stuff in $i
129 for i in $v850_files ; do
130 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
131 if [ -n "${verbose}" ] ; then
132 echo Removing traces of \"v850\" from $i...
135 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
136 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
137 if [ -n "${verbose}" ] ; then
138 echo Caching $i in .Recover...
147 r5900_files="ChangeLog configure.tgt"
149 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
150 for i in $r5900_files ; do
151 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
152 if [ -n "${verbose}" ] ; then
153 echo Keeping r5900 stuff in $i
158 for i in $r5900_files ; do
159 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
160 if [ -n "${verbose}" ] ; then
161 echo Removing traces of \"r5900\" from $i...
164 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
165 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
166 if [ -n "${verbose}" ] ; then
167 echo Caching $i in .Recover...
176 tic80_files="ChangeLog configure.tgt Makefile.in"
178 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
179 for i in $tic80_files ; do
180 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
181 if [ -n "${verbose}" ] ; then
182 echo Keeping tic80 stuff in $i
187 for i in $tic80_files ; do
188 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
189 if [ -n "${verbose}" ] ; then
190 echo Removing traces of \"tic80\" from $i...
193 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
194 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
195 if [ -n "${verbose}" ] ; then
196 echo Caching $i in .Recover...
205 d30v_files="ChangeLog configure.tgt Makefile.in"
207 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
208 for i in $d30v_files ; do
209 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
210 if [ -n "${verbose}" ] ; then
211 echo Keeping d30v stuff in $i
216 for i in $d30v_files ; do
217 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
218 if [ -n "${verbose}" ] ; then
219 echo Removing traces of \"d30v\" from $i...
222 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
223 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
224 if [ -n "${verbose}" ] ; then
225 echo Caching $i in .Recover...
235 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
236 echo '***' Some mentions of Sanitize are still left in $i! 1>&2