* coffcode.h (coff_set_arch_mach_hook): *FIXME* the H8/300 is always
[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 COPYING
26 PORTING
27 doc
28 ChangeLog
29 Makefile.dos
30 Makefile.in
31 TODO
32 VERSION
33 aix386-core.c
34 aout32.c
35 aout64.c
36 aoutf1.h
37 aoutx.h
38 aout-adobe.c
39 aout-encap.c
40 aout-mipsbsd.c
41 aout-target.h
42 archive.c
43 archures.c
44 bfd-in.h
45 bfd.c
46 bout.c
47 cache.c
48 ctor.c
49 coff-a29k.c
50 coff-h8300.c
51 coff-h8500.c
52 coff-i386.c
53 coff-i960.c
54 coff-m68k.c
55 coff-m88k.c
56 coff-mips.c
57 coff-msym.c
58 coff-rs6000.c
59 coff-we32k.c
60 coff-z8k.c
61 coffcode.h
62 coffgen.c
63 coffswap.h
64 config
65 configure.bat
66 configure.in
67 configure.host
68 core.c
69 demo64.c
70 elf.c
71 filemode.c
72 format.c
73 gen-aout.c
74 host-aout.c
75 hosts
76 hppa.c
77 i386aout.c
78 i386bsd.c
79 i386linux.c
80 ieee.c
81 libaout.h
82 libbfd-in.h
83 cpu-a29k.c
84 cpu-i386.c
85 cpu-m68k.c
86 cpu-mips.c
87 cpu-vax.c
88 cpu-h8300.c
89 cpu-h8500.c
90 cpu-hppa.c
91 cpu-i960.c
92 cpu-m88k.c
93 cpu-rs6000.c
94 cpu-we32k.c
95 cpu-z8k.c
96 hp300bsd.c
97 init.c
98 cpu-sparc.c
99 libbfd.c
100 libbfd.h
101 libcoff-in.h
102 libcoff.h
103 libecoff.h
104 libhppa.h
105 libieee.h
106 liboasys.h
107 newsos3.c
108 oasys.c
109 opncls.c
110 reloc.c
111 reloc16.c
112 rs6000-core.c
113 sco-core.c
114 seclet.c
115 seclet.h
116 section.c
117 srec.c
118 stab-syms.c
119 sunos.c
120 syms.c
121 targets.c
122 tekhex.c
123 trad-core.c
124
125 Do-last:
126
127 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
128 echo Keeping v9 in aoutx.h
129 else
130 echo Sanitizing v9 in aoutx.h
131 rm -f new
132 while grep -s start-sanitize-v9 aoutx.h ; do
133 sed -e '/start-sanitize-v9/,/end-sanitize-v9/d' <aoutx.h >new
134 if [ -n "${safe}" ] ; then
135 mv aoutx.h .Recover
136 else
137 rm aoutx.h
138 fi
139 mv new aoutx.h
140 done
141 fi
142
143 # End of file.
This page took 0.031491 seconds and 4 git commands to generate.