Added ctor.c (I remembered this time)
[deliverable/binutils-gdb.git] / bfd / .Sanitize
1 # Sanitize.in for devo.
2 # $Id$
3 #
4
5 # Each directory to survive it's way into a release will need a file
6 # like this one called "./.Sanitize". All keyword lines must exist,
7 # and must exist in the order specified by this file. Each directory
8 # in the tree will be processed, top down, in the following order.
9
10 # Hash started lines like this one are comments and will be deleted
11 # before anything else is done. Blank lines will also be squashed
12 # out.
13
14 # The lines between the "Do-first:" line and the "Things-to-keep:"
15 # line are executed as a /bin/sh shell script before anything else is
16 # done in this
17
18 Do-first:
19
20 echo Sanitizing `pwd`.
21
22 # All files listed between the "Things-to-keep:" line and the
23 # "Files-to-sed:" line will be kept. All other files will be removed.
24 # Directories listed in this section will have their own Sanitize
25 # called. Directories not listed will be removed in their entirety
26 # with rm -rf.
27
28 Things-to-keep:
29 COPYING
30 doc
31 ChangeLog
32 Makefile.in
33 TODO
34 VERSION
35 aout32.c
36 aout64.c
37 aoutf1.h
38 aoutx.h
39 archive.c
40 archures.c
41 bfd-in.h
42 bfd.c
43 bout.c
44 cache.c
45 ctor.c
46 coff-a29k.c
47 coff-i386.c
48 coff-i960.c
49 coff-m68k.c
50 coff-m88k.c
51 coff-mips.c
52 coff-rs6000.c
53 coffcode.h
54 config
55 configure.in
56 core.c
57 demo64.c
58 elf.c
59 filemode.c
60 format.c
61 host-aout.c
62 hosts
63 i386aout.c
64 ieee.c
65 libaout.h
66 libbfd-in.h
67 cpu-a29k.c
68 cpu-i386.c
69 cpu-m68k.c
70 cpu-mips.c
71 cpu-vax.c
72 cpu-h8300.c
73 cpu-i960.c
74 cpu-m88k.c
75 cpu-rs6000.c
76 init.c
77 cpu-sparc.c
78 libbfd.c
79 libbfd.h
80 libcoff-in.h
81 libcoff.h
82 libieee.h
83 liboasys.h
84 newsos3.c
85 oasys.c
86 opncls.c
87 reloc.c
88 section.c
89 srec.c
90 sunos.c
91 syms.c
92 targets.c
93 trad-core.c
94 trad-core.h
95
96 Do-last:
97
98 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
99 echo Keeping v9 in aoutx.h
100 else
101 echo Sanitizing v9 in aoutx.h
102 rm -f new
103 while grep -s start-sanitize-v9 aoutx.h ; do
104 sed -e '/start-sanitize-v9/,/end-sanitize-v9/d' <aoutx.h >new
105 if [ -n "${safe}" ] ; then
106 mv aoutx.h .Recover
107 else
108 rm aoutx.h
109 fi
110 mv new aoutx.h
111 done
112 fi
113
114 echo Done in `pwd`.
115
116 #
117 #
118 # $Log$
119 # Revision 1.28 1991/11/04 00:37:06 steve
120 # Added ctor.c (I remembered this time)
121 #
122 # Revision 1.27 1991/10/25 10:17:41 gnu
123 # * Rename COFF-related files in `coff-ARCH.c' form.
124 # coff-a29k.c, coff-i386.c, coff-i960.c, coff-m68k.c, coff-m88k.c,
125 # coff-mips.c, coff-rs6000.c to be exact.
126 #
127 # Revision 1.26 1991/10/25 07:16:59 gnu
128 # RS/6000 support
129 #
130 # Revision 1.25 1991/10/15 07:29:13 bothner
131 # Add hosts directory.
132 #
133 # Revision 1.24 1991/10/08 22:31:51 gnu
134 # Add i386aout.c
135 #
136 # Revision 1.23 1991/10/05 06:16:44 gnu
137 # howto.c, configure, config.sub gone.
138 #
139 # Revision 1.22 1991/10/03 22:23:56 gnu
140 # Add elf.c
141 #
142 # Revision 1.21 1991/10/01 03:55:34 steve
143 # Insert the incidentals and things I forgot to ci last time, same log message:
144 #
145 # Mon Sep 30 15:13:46 1991 Steve Chamberlain (steve at cygnus.com)
146 #
147 # * cpu-a29k.c, cpu-i386.c, cpu-m68k.c, cpu-mips.c, cpu-vax.c,
148 # cpu-h8300.c, cpu-i960.c, cpu-m88k.c, cpu-sparc.c: added. These
149 # files will eventually contain processor specific bits for bfd,
150 # like strange relocation information and dis/assembly. So far only
151 # the H8 has been even partially done. This work also ties in with
152 # the change in handling architectures.
153 #
154 # * amdcoff.c: (a29k_reloc) fix error message.
155 #
156 # * aout-f1.h: (choose_reloc_size) now calls bfd_get_arch to
157 # discover the architecture of the bfd. (sunos4_callback) calls the
158 # function bfd_set_arch_mach rather than stuffing stuff directly
159 # into the bfd. (sunos4_write_object_contents), changed names of
160 # accessor functions.
161 #
162 # * aoutx.h: (set_arch_mach) now calls bfd_default_set_arch_mach to
163 # setup the environment.
164 #
165 # * archive.c: (bfd_slurp_coff_armap) coff archives always have the
166 # headers in big endian format, regardless of the endianess of the
167 # host or target.
168 #
169 # * archures.c: totally changed. Now an architecture is represented
170 # with a pointer to an info structure rather than an enumerated type
171 # and a long. The old info is available as two elements in the
172 # structure. Future enhancements to architecure support will
173 # involve pointers to methods being placed into the info structure.
174 #
175 # * bfd.c: changed the definition of the bfd structure for the new
176 # architecture stuff.
177 #
178 # * bout.c: (b_out_set_arch_mach) changed to use the new
179 # architecture mechanism.
180 #
181 # * coffcode.h: (coff_set_arch_mach, coff_set_flags) changed to use
182 # the new architecture mechanism.
183 #
184 # * configure.in: added h8 stuff.
185 #
186 # * ieee.c: too many changes to note. Now ieee files written with
187 # bfd gas and ld can be read by gld and ieee only linkers and
188 # simulators.
189 #
190 # * libbfd.c, libbfd.h: changed prototype of bfd_write.
191 #
192 # * newsos3.c: (newos3_callback) now calls bfd_set_arch_mach rather
193 # than fixing the structure directly.
194 #
195 # * oasys.c: (oasys_object_p) now calls bfd_default_set_arch_mach rather
196 # than fixing the structure directly.
197 #
198 # * opncls.c: (new_bfd) makes sure that bfd_init has been called
199 # before opening a bfd.
200 #
201 # * srec.c: (srec_set_arch_mach) now calls bfd_default_set_arch_mach
202 # rather than fixing the structure directly.
203 #
204 # * targets.c: (target_vector) now by defining SELECT_VECS (perhaps
205 # in the t/hmake file) a user can select which backends they want
206 # linked with bfd without changing the source.
207 #
208 # * init.c: new, looks after initializing modules.
209 #
210 # * howto.c: for future use, will allow an application to work out
211 # what cookie to use as a handle on a relcoatio howto.
212 #
213 # Revision 1.20 1991/09/04 03:59:15 rich
214 # Added "recover"'ability.
215 #
216 # Revision 1.19 1991/09/03 22:21:30 rich
217 # "recover" aoutx.h
218 #
219 # Revision 1.18 1991/08/29 00:35:06 gnu
220 # paperwork handled for AMD Coff.
221 #
222 # Revision 1.17 1991/08/22 20:23:12 steve
223 # *** empty log message ***
224 #
225 # Revision 1.16 1991/08/22 07:31:21 gnu
226 # New config.sub
227 #
228 # Revision 1.15 1991/08/22 07:20:49 gnu
229 # Improve our Sanity.
230 #
231 # Revision 1.14 1991/08/17 00:17:00 steve
232 # Documentation
233 #
234 # Revision 1.13 1991/08/01 14:37:51 steve
235 # *** empty log message ***
236 #
237 # Revision 1.12 1991/08/01 05:33:39 gnu
238 # Forgot one more place to remove amdcoff.c reference (sigh).
239 #
240 # Revision 1.11 1991/08/01 01:27:44 gnu
241 # Delete CVS.adm from the release!
242 #
243 # Revision 1.10 1991/07/31 22:28:30 gnu
244 # Remove archures.h
245 #
246 # Revision 1.9 1991/07/31 17:37:00 gnu
247 # Remove amdcoff.c (and its name from Makefile.in) by default, because
248 # its copyright is not yet assigned to FSF.
249 #
250 # Revision 1.8 1991/07/31 07:54:31 gnu
251 # Better sanitize aoutx.h too!
252 #
253 # Revision 1.7 1991/07/16 00:39:03 steve
254 # *** empty log message ***
255 #
256 # Revision 1.6 1991/07/16 00:35:56 steve
257 # *** empty log message ***
258 #
259 # Revision 1.5 1991/07/15 23:32:40 steve
260 # *** empty log message ***
261 #
262 # Revision 1.4 1991/07/04 16:52:54 steve
263 # Now full of documentation. Yum Yum.
264 #
265 # Revision 1.3 1991/05/31 11:22:12 gnu
266 # Remove coff-code.h and liba.out.h, add libaout.h.
267 #
268 # Revision 1.2 1991/05/29 02:40:08 gnu
269 # Fix up .Sanitize file, remove files that are not referenced.
270 #
271 # Revision 1.1 1991/05/23 21:14:00 rich
272 # Initial revision
273 #
274 #
275 #
276
277 # End of file.
This page took 0.035294 seconds and 5 git commands to generate.