1 # .Sanitize for devo/sim/common.
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 cygnus_files="cgen.sh"
19 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
20 keep_these_too="${cygnus_files} ${keep_these_too}"
22 lose_these_too="${cygnus_files} ${lose_these_too}"
25 gxsim_files="sim-gx-run.c sim-gx.c sim-gx.h"
26 if ( echo $* | grep keep\-gxsim > /dev/null ) ; then
27 keep_these_too="${gxsim_files} ${keep_these_too}"
29 lose_these_too="${gxsim_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
164 cygnus_files="ChangeLog Make-common.in"
165 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
166 for i in $cygnus_files ; do
167 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
168 if [ -n "${verbose}" ] ; then
169 echo Keeping cygnus stuff in $i
174 for i in $cygnus_files ; do
175 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
176 if [ -n "${verbose}" ] ; then
177 echo Removing traces of \"cygnus\" from $i...
180 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
181 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
182 if [ -n "${verbose}" ] ; then
183 echo Caching $i in .Recover...
192 gxsim_files="ChangeLog Make-common.in sim-base.h"
193 if ( echo $* | grep keep\-gxsim > /dev/null ) ; then
194 for i in $gxsim_files ; do
195 if test ! -d $i && (grep sanitize-gxsim $i > /dev/null) ; then
196 if [ -n "${verbose}" ] ; then
197 echo Keeping gxsim stuff in $i
202 for i in $gxsim_files ; do
203 if test ! -d $i && (grep sanitize-gxsim $i > /dev/null) ; then
204 if [ -n "${verbose}" ] ; then
205 echo Removing traces of \"gxsim\" from $i...
208 sed '/start\-sanitize\-gxsim/,/end-\sanitize\-gxsim/d' < $i > new
209 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
210 if [ -n "${verbose}" ] ; then
211 echo Caching $i in .Recover...