* mipsread.c (parse_partial_symbols): Do not add undefined
[deliverable/binutils-gdb.git] / bfd / .Sanitize
1 # Sanitize.in for devo/bfd.
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
18 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
19 keep_these_too="elf64-sparc.c"
20 fi
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
30 COPYING
31 ChangeLog
32 Makefile.in
33 PORTING
34 TODO
35 VERSION
36 aix386-core.c
37 aout-adobe.c
38 aout-encap.c
39 aout-target.h
40 aout32.c
41 aout64.c
42 aoutf1.h
43 aoutx.h
44 archive.c
45 archures.c
46 bfd-in.h
47 bfd-in2.h
48 bfd.c
49 bout.c
50 cache.c
51 coff-a29k.c
52 coff-alpha.c
53 coff-h8300.c
54 coff-h8500.c
55 coff-i386.c
56 coff-i960.c
57 coff-m68k.c
58 coff-m88k.c
59 coff-mips.c
60 coff-rs6000.c
61 coff-sh.c
62 coff-u68k.c
63 coff-we32k.c
64 coff-z8k.c
65 coffcode.h
66 coffgen.c
67 coffswap.h
68 config
69 config.bfd
70 configure.bat
71 configure.host
72 configure.in
73 core.c
74 cpu-a29k.c
75 cpu-alpha.c
76 cpu-h8300.c
77 cpu-h8500.c
78 cpu-hppa.c
79 cpu-i386.c
80 cpu-i960.c
81 cpu-m68k.c
82 cpu-m88k.c
83 cpu-mips.c
84 cpu-rs6000.c
85 cpu-sh.c
86 cpu-sparc.c
87 cpu-vax.c
88 cpu-we32k.c
89 cpu-z8k.c
90 ctor.c
91 demo64.c
92 doc
93 ecoff.c
94 ecoffswap.h
95 elf.c
96 elf32-gen.c
97 elf32-hppa.c
98 elf32-hppa.h
99 elf32-i386.c
100 elf32-i860.c
101 elf32-m68k.c
102 elf32-m88k.c
103 elf32-mips.c
104 elf32-sparc.c
105 elf32-target.h
106 elf32.c
107 elf64-gen.c
108 elf64-target.h
109 elf64.c
110 elfcode.h
111 filemode.c
112 format.c
113 gen-aout.c
114 host-aout.c
115 hosts
116 hp300bsd.c
117 hp300hpux.c
118 hppa_stubs.h
119 hpux-core.c
120 i386aout.c
121 i386bsd.c
122 i386linux.c
123 i386lynx-cf.c
124 i386lynx.c
125 i386mach3.c
126 ieee.c
127 init.c
128 libaout.h
129 libbfd-in.h
130 libbfd.c
131 libbfd.h
132 libcoff-in.h
133 libcoff.h
134 libecoff.h
135 libelf.h
136 libhppa.h
137 libieee.h
138 libnlm.h
139 liboasys.h
140 lynx-core.c
141 m68klynx-cf.c
142 m68klynx.c
143 mipsbsd.c
144 newsos3.c
145 netbsd386.c
146 nlm-target.h
147 nlm.c
148 nlm32-gen.c
149 nlm32-i386.c
150 nlm32.c
151 nlm64-gen.c
152 nlm64.c
153 nlmcode.h
154 oasys.c
155 opncls.c
156 osf-core.c
157 reloc.c
158 reloc16.c
159 rs6000-core.c
160 seclet.c
161 seclet.h
162 section.c
163 som.c
164 som.h
165 srec.c
166 stab-syms.c
167 sunos.c
168 syms.c
169 targets.c
170 tekhex.c
171 trad-core.c
172
173 Things-to-lose:
174
175
176 Do-last:
177
178 v9files="configure.in elfcode.h reloc.c bfd-in2.h targets.c config.bfd"
179 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
180 if [ -n "${verbose}" ] ; then
181 echo Keeping v9 stuff in $v9files.
182 fi
183 else
184 if [ -n "${verbose}" ]; then
185 echo -n Cleaning v9 in `pwd`:
186 fi
187 for f in $v9files ; do
188 if [ -n "${verbose}" ] ; then
189 echo -n " " $f
190 fi
191 sed '/start\-sanitize\-v9/,/end\-sanitize\-v9/d' < $f > new
192 if [ -n "${safe}" ] ; then
193 mv $f .Recover
194 fi
195 mv new $f
196 done
197 chmod a+x config.bfd
198 fi
199
200
201 # End of file.
This page took 0.033217 seconds and 4 git commands to generate.