]>
Commit | Line | Data |
---|---|---|
2323d13b | 1 | # .Sanitize for devo/include. |
0fd8d5d9 | 2 | |
2323d13b | 3 | # Each directory to survive its way into a release will need a file |
0fd8d5d9 RP |
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 | |
2323d13b | 14 | # done in this directory. |
0fd8d5d9 RP |
15 | |
16 | Do-first: | |
17 | ||
2323d13b | 18 | |
0fd8d5d9 RP |
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 | |
23 | # with rm -rf. | |
24 | ||
25 | Things-to-keep: | |
26 | ||
8e71e6e3 | 27 | COPYING |
49d6a0e6 | 28 | ChangeLog |
0fd8d5d9 | 29 | ansidecl.h |
11eab90c | 30 | aout |
9a0418eb | 31 | bfdlink.h |
0fd8d5d9 | 32 | bout.h |
9d10b92d | 33 | callback.h |
11eab90c | 34 | coff |
c9725927 | 35 | demangle.h |
d7e1be46 | 36 | dis-asm.h |
11eab90c | 37 | elf |
8b1d1557 | 38 | floatformat.h |
fa8e5931 | 39 | fnmatch.h |
201258d5 JW |
40 | fopen-bin.h |
41 | fopen-same.h | |
a570d4b2 | 42 | fopen-vms.h |
0fd8d5d9 RP |
43 | gdbm.h |
44 | getopt.h | |
8ee0532b | 45 | hp-symtab.h |
0fd8d5d9 | 46 | ieee.h |
e51437f1 | 47 | libiberty.h |
01c32fc4 | 48 | mpw |
f7da7289 | 49 | nlm |
0fd8d5d9 | 50 | oasys.h |
bc68afb2 | 51 | objalloc.h |
0fd8d5d9 | 52 | obstack.h |
02400c00 | 53 | os9k.h |
11eab90c | 54 | opcode |
d4d4c53c | 55 | progress.h |
05e4e44f | 56 | remote-sim.h |
0fd8d5d9 RP |
57 | wait.h |
58 | ||
87756e15 RP |
59 | Things-to-lose: |
60 | ||
775d4a40 | 61 | |
0fd8d5d9 RP |
62 | Do-last: |
63 | ||
dc997928 DE |
64 | arc_files="ChangeLog dis-asm.h" |
65 | if ( echo $* | grep keep\-arc > /dev/null ) ; then | |
66 | for i in $arc_files ; do | |
67 | if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then | |
68 | if [ -n "${verbose}" ] ; then | |
69 | echo Keeping arc stuff in $i | |
70 | fi | |
71 | fi | |
72 | done | |
73 | else | |
74 | for i in $arc_files ; do | |
75 | if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then | |
76 | if [ -n "${verbose}" ] ; then | |
77 | echo Removing traces of \"arc\" from $i... | |
78 | fi | |
79 | cp $i new | |
80 | sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new | |
81 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
82 | if [ -n "${verbose}" ] ; then | |
83 | echo Caching $i in .Recover... | |
84 | fi | |
85 | mv $i .Recover | |
86 | fi | |
87 | mv new $i | |
88 | fi | |
89 | done | |
90 | fi | |
91 | ||
a0a36aa0 JL |
92 | v850_files="ChangeLog dis-asm.h" |
93 | if ( echo $* | grep keep\-v850 > /dev/null ) ; then | |
94 | for i in $v850_files ; do | |
95 | if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then | |
96 | if [ -n "${verbose}" ] ; then | |
97 | echo Keeping v850 stuff in $i | |
98 | fi | |
99 | fi | |
100 | done | |
101 | else | |
102 | for i in $v850_files ; do | |
103 | if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then | |
104 | if [ -n "${verbose}" ] ; then | |
105 | echo Removing traces of \"v850\" from $i... | |
106 | fi | |
107 | cp $i new | |
108 | sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new | |
109 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
110 | if [ -n "${verbose}" ] ; then | |
111 | echo Caching $i in .Recover... | |
112 | fi | |
113 | mv $i .Recover | |
114 | fi | |
115 | mv new $i | |
116 | fi | |
117 | done | |
118 | fi | |
119 | ||
33aeaf00 FF |
120 | tic80_files="ChangeLog dis-asm.h" |
121 | if ( echo $* | grep keep\-tic80 > /dev/null ) ; then | |
122 | for i in $tic80_files ; do | |
123 | if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then | |
124 | if [ -n "${verbose}" ] ; then | |
125 | echo Keeping tic80 stuff in $i | |
126 | fi | |
127 | fi | |
128 | done | |
129 | else | |
130 | for i in $tic80_files ; do | |
131 | if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then | |
132 | if [ -n "${verbose}" ] ; then | |
133 | echo Removing traces of \"tic80\" from $i... | |
134 | fi | |
135 | cp $i new | |
136 | sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new | |
137 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
138 | if [ -n "${verbose}" ] ; then | |
139 | echo Caching $i in .Recover... | |
140 | fi | |
141 | mv $i .Recover | |
142 | fi | |
143 | mv new $i | |
144 | fi | |
145 | done | |
146 | fi | |
147 | ||
713495a9 MH |
148 | d30v_files="ChangeLog dis-asm.h" |
149 | if ( echo $* | grep keep\-d30v > /dev/null ) ; then | |
150 | for i in $d30v_files ; do | |
151 | if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then | |
152 | if [ -n "${verbose}" ] ; then | |
153 | echo Keeping d30v stuff in $i | |
154 | fi | |
155 | fi | |
156 | done | |
157 | else | |
158 | for i in $d30v_files ; do | |
159 | if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then | |
160 | if [ -n "${verbose}" ] ; then | |
161 | echo Removing traces of \"d30v\" from $i... | |
162 | fi | |
163 | cp $i new | |
164 | sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new | |
165 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
166 | if [ -n "${verbose}" ] ; then | |
167 | echo Caching $i in .Recover... | |
168 | fi | |
169 | mv $i .Recover | |
170 | fi | |
171 | mv new $i | |
172 | fi | |
173 | done | |
174 | fi | |
175 | ||
dc997928 DE |
176 | for i in * ; do |
177 | if test ! -d $i && (grep sanitize $i > /dev/null) ; then | |
178 | echo '***' Some mentions of Sanitize are still left in $i! 1>&2 | |
179 | fi | |
180 | done | |
181 | ||
0fd8d5d9 | 182 | # End of file. |