Reflect symmetry changes
[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-i960.c
58 coff-m68k-un.c
59 coff-m68k.c
60 coff-m88k.c
61 coff-mips.c
62 coff-msym.c
63 coff-rs6000.c
64 coff-sh.c
65 coff-we32k.c
66 coff-z8k.c
67 coffcode.h
68 coffgen.c
69 coffswap.h
70 config
71 configure.bat
72 configure.host
73 configure.in
74 core.c
75 cpu-a29k.c
76 cpu-alpha.c
77 cpu-h8300.c
78 cpu-h8500.c
79 cpu-hppa.c
80 cpu-i386.c
81 cpu-i960.c
82 cpu-m68k.c
83 cpu-m88k.c
84 cpu-mips.c
85 cpu-rs6000.c
86 cpu-sh.c
87 cpu-sparc.c
88 cpu-vax.c
89 cpu-we32k.c
90 cpu-z8k.c
91 ctor.c
92 demo64.c
93 doc
94 elf.c
95 elf32-gen.c
96 elf32-hppa.c
97 elf32-hppa.h
98 elf32-i386.c
99 elf32-i860.c
100 elf32-m68k.c
101 elf32-m88k.c
102 elf32-mips.c
103 elf32-sparc.c
104 elf32-target.h
105 elf32.c
106 elf64-gen.c
107 elf64-target.h
108 elf64.c
109 elfcode.h
110 filemode.c
111 format.c
112 gen-aout.c
113 host-aout.c
114 hosts
115 hp300bsd.c
116 hp300hpux.c
117 hppa.c
118 hppa_stubs.h
119 i386aout.c
120 i386bsd.c
121 i386linux.c
122 i386lynx.c
123 ieee.c
124 init.c
125 libaout.h
126 libbfd-in.h
127 libbfd.c
128 libbfd.h
129 libcoff-in.h
130 libcoff.h
131 libecoff.h
132 libelf.h
133 libhppa.h
134 libieee.h
135 libnlm.h
136 liboasys.h
137 mipsbsd.c
138 newsos3.c
139 nlm.c
140 nlm32-gen.c
141 nlm32-target.h
142 nlm32.c
143 nlm64-gen.c
144 nlm64-target.h
145 nlm64.c
146 nlmcode.h
147 oasys.c
148 opncls.c
149 reloc.c
150 reloc16.c
151 rs6000-core.c
152 sco-core.c
153 seclet.c
154 seclet.h
155 section.c
156 srec.c
157 stab-syms.c
158 sunos.c
159 syms.c
160 targets.c
161 tekhex.c
162 trad-core.c
163
164 Things-to-lose:
165
166 Do-last:
167
168 v9files="configure.in elfcode.h reloc.c bfd-in2.h"
169 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
170 if [ -n "${verbose}" ] ; then
171 echo Keeping v9 stuff in $v9files.
172 fi
173 else
174 if [ -n "${verbose}" ]; then
175 echo -n Cleaning v9 in `pwd`:
176 fi
177 for f in $v9files ; do
178 if [ -n "${verbose}" ] ; then
179 echo -n " " $f
180 fi
181 sed '/start\-sanitize\-v9/,/end\-sanitize\-v9/d' < $f > new
182 if [ -n "${safe}" ] ; then
183 mv $f .Recover
184 fi
185 mv new $f
186 done
187 fi
188
189 # End of file.
This page took 0.036134 seconds and 5 git commands to generate.