1 # .Sanitize for devo/include.
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.
19 # All files listed between the "Things-to-keep:" line and the
20 # "Files-to-sed:" line will be kept. All other files will be removed.
21 # Directories listed in this section will have their own Sanitize
22 # called. Directories not listed will be removed in their entirety
67 if [ -n "${verbose}" ] ; then
68 echo Processing \"tic80\"...
71 tic80_files="ChangeLog dis-asm.h"
72 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
73 for i in $tic80_files ; do
74 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
75 if [ -n "${verbose}" ] ; then
76 echo Keeping tic80 stuff in $i
81 for i in $tic80_files ; do
82 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
83 if [ -n "${verbose}" ] ; then
84 echo Removing traces of \"tic80\" from $i...
87 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
88 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
89 if [ -n "${verbose}" ] ; then
90 echo Caching $i in .Recover...
99 fr30_files="ChangeLog dis-asm.h"
100 if ( echo $* | grep keep\-fr30 > /dev/null ) ; then
101 for i in $fr30_files ; do
102 if test ! -d $i && (grep sanitize-fr30 $i > /dev/null) ; then
103 if [ -n "${verbose}" ] ; then
104 echo Keeping fr30 stuff in $i
109 for i in $fr30_files ; do
110 if test ! -d $i && (grep sanitize-fr30 $i > /dev/null) ; then
111 if [ -n "${verbose}" ] ; then
112 echo Removing traces of \"fr30\" from $i...
115 sed '/start\-sanitize\-fr30/,/end-\sanitize\-fr30/d' < $i > new
116 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
117 if [ -n "${verbose}" ] ; then
118 echo Caching $i in .Recover...
127 if [ -n "${verbose}" ] ; then
128 echo Processing \"sky\"...
131 sky_files="ChangeLog dis-asm.h"
132 if ( echo $* | grep keep\-sky > /dev/null ) ; then
133 for i in $sky_files ; do
134 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
135 if [ -n "${verbose}" ] ; then
136 echo Keeping sky stuff in $i
141 for i in $sky_files ; do
142 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
143 if [ -n "${verbose}" ] ; then
144 echo Removing traces of \"sky\" from $i...
147 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
148 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
149 if [ -n "${verbose}" ] ; then
150 echo Caching $i in .Recover...
159 if [ -n "${verbose}" ] ; then
160 echo Processing \"java\"...
163 java_files="ChangeLog demangle.h"
164 if ( echo $* | grep keep\-java > /dev/null ) ; then
165 for i in $java_files ; do
166 if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
167 if [ -n "${verbose}" ] ; then
168 echo Keeping java stuff in $i
174 if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
175 if [ -n "${verbose}" ] ; then
176 echo Removing traces of \"java\" from $i...
179 sed '/start\-sanitize\-java/,/end-\sanitize\-java/d' < $i > new
180 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
181 if [ -n "${verbose}" ] ; then
182 echo Caching $i in .Recover...
192 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
193 echo '***' Some mentions of Sanitize are still left in $i! 1>&2