62c523f28e95d42c776be2c176849c9b5fb4e4ce
[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 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
22 # with rm -rf.
23
24 Things-to-keep:
25
26 COPYING
27 PORTING
28 doc
29 ChangeLog
30 Makefile.in
31 README.hppaelf
32 TODO
33 VERSION
34 aix386-core.c
35 aout32.c
36 aout64.c
37 aoutf1.h
38 aoutx.h
39 aout-adobe.c
40 aout-encap.c
41 aout-target.h
42 archive.c
43 archures.c
44 bfd-in.h
45 bfd-in2.h
46 bfd.c
47 bout.c
48 cache.c
49 ctor.c
50 coff-alpha.c
51 coff-a29k.c
52 coff-h8300.c
53 coff-h8500.c
54 coff-i386.c
55 coff-i960.c
56 coff-m68k.c
57 coff-m68k-un.c
58 coff-m88k.c
59 coff-mips.c
60 coff-msym.c
61 coff-rs6000.c
62 coff-sh.c
63 coff-we32k.c
64 coff-z8k.c
65 coffcode.h
66 coffgen.c
67 coffswap.h
68 config
69 configure.bat
70 configure.in
71 configure.host
72 core.c
73 demo64.c
74 elf.c
75 elf32-generic.c
76 elf32-hppa.c
77 elf32-hppa.h
78 elf32-i386.c
79 elf32-i860.c
80 elf32-m68k.c
81 elf32-m88k.c
82 elf32-mips.c
83 elf32-sparc.c
84 elf32-target.h
85 elf32.c
86 elf64-generic.c
87 elf64-sparc.c
88 elf64-target.h
89 elf64.c
90 elfcode.h
91 filemode.c
92 format.c
93 gen-aout.c
94 host-aout.c
95 hosts
96 hp300hpux.c
97 hppa.c
98 hppa_stubs.h
99 i386aout.c
100 i386bsd.c
101 i386linux.c
102 i386lynx.c
103 ieee.c
104 libaout.h
105 libbfd-in.h
106 libelf.h
107 cpu-alpha.c
108 cpu-a29k.c
109 cpu-i386.c
110 cpu-m68k.c
111 cpu-mips.c
112 cpu-vax.c
113 cpu-h8300.c
114 cpu-h8500.c
115 cpu-hppa.c
116 cpu-i960.c
117 cpu-m88k.c
118 cpu-rs6000.c
119 cpu-sh.c
120 cpu-we32k.c
121 cpu-z8k.c
122 hp300bsd.c
123 init.c
124 cpu-sparc.c
125 libbfd.c
126 libbfd.h
127 libcoff-in.h
128 libcoff.h
129 libecoff.h
130 libhppa.h
131 libieee.h
132 liboasys.h
133 mipsbsd.c
134 newsos3.c
135 oasys.c
136 opncls.c
137 reloc.c
138 reloc16.c
139 rs6000-core.c
140 sco-core.c
141 seclet.c
142 seclet.h
143 section.c
144 srec.c
145 stab-syms.c
146 sunos.c
147 syms.c
148 targets.c
149 tekhex.c
150 trad-core.c
151
152 Things-to-lose:
153
154 Do-last:
155
156 v9files="configure.in elfcode.h"
157 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
158 if [ -n "${verbose}" ] ; then
159 echo Keeping v9 stuff in $v9files.
160 fi
161 else
162 if [ -n "${verbose}" ]; then
163 echo -n Cleaning v9 from
164 fi
165 for f in $v9files ; do
166 if [ -n "${verbose}" ] ; then
167 echo -n " " $f
168 fi
169 grep -v v9 < $f > new
170 if [ -n "${safe}" ] ; then
171 cp $f .Recover
172 fi
173 mv new $f
174 done
175 if [ -n "${safe}" ] ; then
176 mv elf64-sparc.c .Recover
177 else
178 rm elf64-sparc.c
179 fi
180 if [ -n "${verbose}" ] ; then
181 echo " ..." deleting elf64-sparc.c.
182 fi
183 fi
184
185 # End of file.
This page took 0.033208 seconds and 4 git commands to generate.