* configure.in: i386lynx_coff_vec requires coff-i386lynx.o.
[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 README.hppaelf
35 TODO
36 VERSION
37 aix386-core.c
38 aout-adobe.c
39 aout-encap.c
40 aout-target.h
41 aout32.c
42 aout64.c
43 aoutf1.h
44 aoutx.h
45 archive.c
46 archures.c
47 bfd-in.h
48 bfd-in2.h
49 bfd.c
50 bout.c
51 cache.c
52 coff-a29k.c
53 coff-alpha.c
54 coff-h8300.c
55 coff-h8500.c
56 coff-i386.c
57 coff-i386lynx.c
58 coff-i960.c
59 coff-m68k.c
60 coff-m88k.c
61 coff-mips.c
62 coff-rs6000.c
63 coff-sh.c
64 coff-u68k.c
65 coff-we32k.c
66 coff-z8k.c
67 coffcode.h
68 coffgen.c
69 coffswap.h
70 config
71 config.bfd
72 configure.bat
73 configure.host
74 configure.in
75 core.c
76 cpu-a29k.c
77 cpu-alpha.c
78 cpu-h8300.c
79 cpu-h8500.c
80 cpu-hppa.c
81 cpu-i386.c
82 cpu-i960.c
83 cpu-m68k.c
84 cpu-m88k.c
85 cpu-mips.c
86 cpu-rs6000.c
87 cpu-sh.c
88 cpu-sparc.c
89 cpu-vax.c
90 cpu-we32k.c
91 cpu-z8k.c
92 ctor.c
93 demo64.c
94 doc
95 ecoff.c
96 ecoffswap.h
97 elf.c
98 elf32-gen.c
99 elf32-hppa.c
100 elf32-hppa.h
101 elf32-i386.c
102 elf32-i860.c
103 elf32-m68k.c
104 elf32-m88k.c
105 elf32-mips.c
106 elf32-sparc.c
107 elf32-target.h
108 elf32.c
109 elf64-gen.c
110 elf64-target.h
111 elf64.c
112 elfcode.h
113 filemode.c
114 format.c
115 gen-aout.c
116 host-aout.c
117 hosts
118 hp300bsd.c
119 hp300hpux.c
120 hppa.c
121 hppa_stubs.h
122 hpux-core.c
123 i386aout.c
124 i386bsd.c
125 i386linux.c
126 i386lynx.c
127 i386mach3.c
128 ieee.c
129 init.c
130 libaout.h
131 libbfd-in.h
132 libbfd.c
133 libbfd.h
134 libcoff-in.h
135 libcoff.h
136 libecoff.h
137 libelf.h
138 libhppa.h
139 libieee.h
140 libnlm.h
141 liboasys.h
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.032825 seconds and 4 git commands to generate.