1 # .Sanitize for devo/include/opcode.
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 if ( echo $* | grep keep\-arc > /dev/null ) ; then
21 keep_these_too="${arc_files} ${keep_these_too}"
23 lose_these_too="${arc_files} ${lose_these_too}"
28 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
29 keep_these_too="${d10v_files} ${keep_these_too}"
31 lose_these_too="${d10v_files} ${lose_these_too}"
36 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
37 keep_these_too="${v850_files} ${keep_these_too}"
39 lose_these_too="${v850_files} ${lose_these_too}"
43 # All files listed between the "Things-to-keep:" line and the
44 # "Files-to-sed:" line will be kept. All other files will be removed.
45 # Directories listed in this section will have their own Sanitize
46 # called. Directories not listed will be removed in their entirety
78 if ( echo $* | grep keep\-arc > /dev/null ) ; then
79 for i in $arc_files ; do
80 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
81 if [ -n "${verbose}" ] ; then
82 echo Keeping arc stuff in $i
87 for i in $arc_files ; do
88 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
89 if [ -n "${verbose}" ] ; then
90 echo Removing traces of \"arc\" from $i...
93 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
94 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
95 if [ -n "${verbose}" ] ; then
96 echo Caching $i in .Recover...
106 d10v_files="ChangeLog"
107 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
108 for i in $d10v_files ; do
109 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
110 if [ -n "${verbose}" ] ; then
111 echo Keeping d10v stuff in $i
116 for i in $d10v_files ; do
117 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
118 if [ -n "${verbose}" ] ; then
119 echo Removing traces of \"d10v\" from $i...
122 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
123 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
124 if [ -n "${verbose}" ] ; then
125 echo Caching $i in .Recover...
134 v850_files="ChangeLog"
135 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
136 for i in $v850_files ; do
137 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
138 if [ -n "${verbose}" ] ; then
139 echo Keeping v850 stuff in $i
144 for i in $v850_files ; do
145 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
146 if [ -n "${verbose}" ] ; then
147 echo Removing traces of \"v850\" from $i...
150 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
151 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
152 if [ -n "${verbose}" ] ; then
153 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