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