* ld-scripts/script.t: Put .pr in .text, and .rw in .data, for
[deliverable/binutils-gdb.git] / opcodes / .Sanitize
CommitLineData
67c2d8c8 1# .Sanitize for devo/opcodes.
a4ccc310 2
e7c4e61c 3# Each directory to survive its way into a release will need a file
a4ccc310
SC
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
10f1b597 14# done in this directory.
a4ccc310
SC
15
16Do-first:
17
03c4ce2f 18rce_files="rce-dis.c rce-opc.h"
d94aca1a 19
03c4ce2f
MT
20if ( echo $* | grep keep\-rce > /dev/null ) ; then
21 keep_these_too="${rce_files} ${keep_these_too}"
d94aca1a 22else
03c4ce2f 23 lose_these_too="${rce_files} ${lose_these_too}"
d94aca1a
MT
24fi
25
8515dbe2
DE
26arc_files="arc-dis.c arc-opc.c"
27
28if ( echo $* | grep keep\-arc > /dev/null ) ; then
29 keep_these_too="${arc_files} ${keep_these_too}"
30else
31 lose_these_too="${arc_files} ${lose_these_too}"
32fi
33
a4ccc310
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
40Things-to-keep:
87756e15 41
a4ccc310 42ChangeLog
add1fb05 43Makefile.in
9b65d522 44aclocal.m4
5f8f6d56
SC
45alpha-dis.c
46alpha-opc.h
ba08215a
KR
47arm-dis.c
48arm-opc.h
720b3aed 49a29k-dis.c
50982f7f
KR
50config.in
51configure
fc984fdb 52configure.bat
add1fb05 53configure.in
117733ad 54dis-buf.c
204c9148 55disassemble.c
3b4cc5ec 56h8300-dis.c
337110ea
SC
57h8500-dis.c
58h8500-opc.h
cfa8d061 59hppa-dis.c
c840244e 60i386-dis.c
720b3aed 61i960-dis.c
c840244e 62m68k-dis.c
85093dca 63m68k-opc.c
a4c01299 64m88k-dis.c
bf1dd2fd 65mips-dis.c
69135a69 66mips-opc.c
7a4f107d 67mpw-config.in
077bd46a 68mpw-make.sed
2a097d73 69ns32k-dis.c
89221bd5
ILT
70ppc-dis.c
71ppc-opc.c
8679a71f
SC
72sh-opc.h
73sh-dis.c
117733ad 74sparc-dis.c
c3a1191a 75sparc-opc.c
50982f7f 76sysdep.h
9f744f91
SC
77w65-dis.c
78w65-opc.h
add1fb05 79z8k-dis.c
a4ccc310 80z8k-opc.h
ea2598e4 81z8kgen.c
add1fb05 82
87756e15
RP
83Things-to-lose:
84
62ba1060
SC
85Do-last:
86
2a097d73
KR
87i960xl_files="ChangeLog i960-dis.c"
88if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
89 if [ -n "${verbose}" ] ; then
90 echo Keeping i960xl stuff in $i960xl_files.
91 fi
92else
93 if [ -n "${verbose}" ]; then
94 echo -n Cleaning i960xl in `pwd`:
95 fi
96 for f in $i960xl_files ; do
97 if [ -n "${verbose}" ] ; then
98 echo -n " " $f
99 fi
100 sed -e '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' -e '/ xl /d' < $f > new
101 if [ -n "${safe}" ] ; then
102 mv $f .Recover
103 fi
104 mv new $f
105 done
106fi
107
1ca31557
JL
108sh3e_files="ChangeLog sh-dis.c sh-opc.h"
109if ( echo $* | grep keep\-sh3e > /dev/null ) ; then
110 if [ -n "${verbose}" ] ; then
111 echo Keeping sh3e stuff in $sh3e_files.
112 fi
113else
114 if [ -n "${verbose}" ]; then
115 echo -n Cleaning sh3e in `pwd`:
116 fi
117 for f in $sh3e_files ; do
118 if [ -n "${verbose}" ] ; then
119 echo -n " " $f
120 fi
121 sed -e '/start\-sanitize\-sh3e/,/end\-sanitize\-sh3e/d' -e '/ xl /d' < $f > new
122 if [ -n "${safe}" ] ; then
123 mv $f .Recover
124 fi
125 mv new $f
126 done
127fi
128
50982f7f 129rce_files="configure.in configure"
03c4ce2f
MT
130if ( echo $* | grep keep\-rce > /dev/null ) ; then
131 for i in $rce_files ; do
132 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
5c680afd 133 if [ -n "${verbose}" ] ; then
03c4ce2f 134 echo Keeping rce stuff in $i
5c680afd
MT
135 fi
136 fi
137 done
138else
03c4ce2f
MT
139 for i in $rce_files ; do
140 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
5c680afd 141 if [ -n "${verbose}" ] ; then
03c4ce2f 142 echo Removing traces of \"rce\" from $i...
5c680afd
MT
143 fi
144 cp $i new
03c4ce2f 145 sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
5c680afd
MT
146 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
147 if [ -n "${verbose}" ] ; then
148 echo Caching $i in .Recover...
149 fi
150 mv $i .Recover
151 fi
152 mv new $i
153 fi
154 done
155fi
156
50982f7f 157arc_files="ChangeLog Makefile.in configure.in configure disassemble.c"
8515dbe2
DE
158if ( echo $* | grep keep\-arc > /dev/null ) ; then
159 for i in $arc_files ; do
160 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
161 if [ -n "${verbose}" ] ; then
162 echo Keeping arc stuff in $i
163 fi
164 fi
165 done
166else
167 for i in $arc_files ; do
168 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
169 if [ -n "${verbose}" ] ; then
170 echo Removing traces of \"arc\" from $i...
171 fi
172 cp $i new
173 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
174 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
175 if [ -n "${verbose}" ] ; then
176 echo Caching $i in .Recover...
177 fi
178 mv $i .Recover
179 fi
180 mv new $i
181 fi
182 done
183fi
184
5c680afd
MT
185for i in * ; do
186 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
187 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
188 fi
189done
190
a4ccc310 191# End of file.
This page took 0.131764 seconds and 4 git commands to generate.