]>
Commit | Line | Data |
---|---|---|
b0c9f026 SC |
1 | # .Sanitize for devo/sim. |
2 | ||
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. | |
7 | ||
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 | |
10 | # out. | |
11 | ||
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 | |
15 | ||
16 | Do-first: | |
17 | ||
19a2b300 | 18 | d30v_files="d30v testsuite" |
317df3b5 | 19 | if ( echo $* | grep keep\-d30v > /dev/null ) ; then |
f13f11b4 | 20 | keep_these_too="${d30v_files} ${keep_these_too}" |
317df3b5 AC |
21 | else |
22 | lose_these_too="${d30v_files} ${lose_these_too}" | |
23 | fi | |
24 | ||
19a2b300 | 25 | tic80_files="tic80" |
15c16493 | 26 | if ( echo $* | grep keep\-tic80 > /dev/null ) ; then |
f13f11b4 | 27 | keep_these_too="${tic80_files} ${keep_these_too}" |
15c16493 AC |
28 | else |
29 | lose_these_too="${tic80_files} ${lose_these_too}" | |
30 | fi | |
31 | ||
f13f11b4 | 32 | lose_these_too="${lose_these_too}" |
19a2b300 | 33 | |
b0c9f026 SC |
34 | # All files listed between the "Things-to-keep:" line and the |
35 | # "Files-to-sed:" line will be kept. All other files will be removed. | |
36 | # Directories listed in this section will have their own Sanitize | |
37 | # called. Directories not listed will be removed in their entirety | |
38 | # with rm -rf. | |
39 | ||
40 | Things-to-keep: | |
41 | ||
83a4c26f | 42 | ChangeLog |
55538130 | 43 | Makefile.in |
117224ea | 44 | README-HACKING |
d32033ad | 45 | arm |
1ffd292b | 46 | configure |
b0c9f026 | 47 | configure.in |
60181796 | 48 | common |
22540e2d | 49 | d10v |
fd58f4b1 | 50 | erc32 |
b0c9f026 | 51 | h8300 |
a66ad4b2 | 52 | h8500 |
f13f11b4 | 53 | igen |
3990f1cd | 54 | m32r |
2f82f755 | 55 | mips |
c1848bd2 | 56 | mn10200 |
05ccbdfd | 57 | mn10300 |
cb7a6892 | 58 | ppc |
594266fc | 59 | sh |
f13f11b4 | 60 | v850 |
4a5947d0 | 61 | w65 |
b0c9f026 SC |
62 | z8k |
63 | ||
87756e15 RP |
64 | Things-to-lose: |
65 | ||
447a825b | 66 | |
b0c9f026 SC |
67 | Do-last: |
68 | ||
15c16493 AC |
69 | d30v_files="configure configure.in ChangeLog" |
70 | if ( echo $* | grep keep\-d30v > /dev/null ) ; then | |
71 | for i in $d30v_files ; do | |
72 | if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then | |
82feb39e | 73 | if [ -n "${verbose}" ] ; then |
15c16493 | 74 | echo Keeping d30v stuff in $i |
82feb39e JL |
75 | fi |
76 | fi | |
77 | done | |
78 | else | |
15c16493 AC |
79 | for i in $d30v_files ; do |
80 | if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then | |
82feb39e | 81 | if [ -n "${verbose}" ] ; then |
15c16493 | 82 | echo Removing traces of \"d30v\" from $i... |
82feb39e JL |
83 | fi |
84 | cp $i new | |
15c16493 | 85 | sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new |
82feb39e JL |
86 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then |
87 | if [ -n "${verbose}" ] ; then | |
88 | echo Caching $i in .Recover... | |
89 | fi | |
90 | mv $i .Recover | |
91 | fi | |
92 | mv new $i | |
93 | fi | |
94 | done | |
95 | fi | |
317df3b5 | 96 | |
15c16493 AC |
97 | tic80_files="configure configure.in ChangeLog" |
98 | if ( echo $* | grep keep\-tic80 > /dev/null ) ; then | |
99 | for i in $tic80_files ; do | |
100 | if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then | |
317df3b5 | 101 | if [ -n "${verbose}" ] ; then |
15c16493 | 102 | echo Keeping tic80 stuff in $i |
317df3b5 AC |
103 | fi |
104 | fi | |
105 | done | |
106 | else | |
15c16493 AC |
107 | for i in $tic80_files ; do |
108 | if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then | |
317df3b5 | 109 | if [ -n "${verbose}" ] ; then |
15c16493 | 110 | echo Removing traces of \"tic80\" from $i... |
317df3b5 AC |
111 | fi |
112 | cp $i new | |
15c16493 AC |
113 | sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new |
114 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
115 | if [ -n "${verbose}" ] ; then | |
116 | echo Caching $i in .Recover... | |
117 | fi | |
118 | mv $i .Recover | |
119 | fi | |
120 | mv new $i | |
121 | fi | |
122 | done | |
123 | fi | |
124 | ||
125 | v850_files="configure configure.in ChangeLog" | |
27161f9e NC |
126 | if ( echo $* | grep keep\-v850e > /dev/null ) ; then |
127 | for i in $v850_files ; do | |
128 | if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then | |
129 | if [ -n "${verbose}" ] ; then | |
130 | echo Keeping v850e stuff in $i | |
131 | fi | |
132 | fi | |
133 | done | |
134 | else | |
135 | for i in $v850_files ; do | |
136 | if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then | |
137 | if [ -n "${verbose}" ] ; then | |
138 | echo Removing traces of \"v850e\" from $i... | |
139 | fi | |
140 | cp $i new | |
141 | sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new | |
142 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
143 | if [ -n "${verbose}" ] ; then | |
144 | echo Caching $i in .Recover... | |
145 | fi | |
146 | mv $i .Recover | |
147 | fi | |
148 | mv new $i | |
149 | fi | |
150 | done | |
151 | fi | |
27161f9e | 152 | |
317df3b5 | 153 | |
745a0437 MH |
154 | for i in * ; do |
155 | if test ! -d $i && (grep sanitize $i > /dev/null) ; then | |
156 | echo '***' Some mentions of Sanitize are still left in $i! 1>&2 | |
157 | fi | |
158 | done | |
159 | ||
b0c9f026 | 160 | # End of file. |