Add m88k-coff target Makefile fragment.
[deliverable/binutils-gdb.git] / gas / config / .Sanitize
... / ...
CommitLineData
1# Sanitize.in for devo.
2# $Id$
3#
4
5# Each directory to survive it's way into a release will need a file
6# like this one called "./.Sanitize". All keyword lines must exist,
7# and must exist in the order specified by this file. Each directory
8# in the tree will be processed, top down, in the following order.
9
10# Hash started lines like this one are comments and will be deleted
11# before anything else is done. Blank lines will also be squashed
12# out.
13
14# The lines between the "Do-first:" line and the "Things-to-keep:"
15# line are executed as a /bin/sh shell script before anything else is
16# done in this
17
18Do-first:
19
20
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
28Things-to-keep:
29
30aout_gnu.h
31atof-ieee.c
32atof-ns32k.c
33atof-tahoe.c
34atof-vax.c
35coff_gnu.h
36cplus-dem.c
37ebmon29k.mt
38h8300.mt
39h8500.mt
40h8300hds.mt
41ho-ansi.h
42ho-decstatn.h
43ho-generic.h
44ho-go32.h
45ho-hppabsd.h
46ho-hpux.h
47ho-i386.h
48ho-i386aix.h
49ho-irix.h
50ho-mipsbsd.h
51ho-rs6000.h
52ho-sun3.h
53ho-sun386.h
54ho-sun4.h
55ho-sunos.h
56ho-sysv.h
57ho-vax.h
58ho-vms.h
59i386coff.mt
60m68k.mt
61m68kcoff.mt
62m88k-opcode.h
63m88k.patches
64m88kcoff.mt
65mips-big.mt
66mips-lit.mt
67obj-aout.c
68obj-aout.h
69obj-bout.c
70obj-bout.h
71obj-coff.c
72obj-coff.h
73obj-coffbfd.c
74obj-coffbfd.h
75obj-ecoff.c
76obj-ecoff.h
77obj-elf.c
78obj-elf.h
79obj-generic.c
80obj-generic.h
81obj-hp300.c
82obj-hp300.h
83obj-ieee.c
84obj-ieee.h
85obj-vms.c
86obj-vms.h
87sh.mt
88sparc.mt
89tc-a29k.c
90tc-a29k.h
91tc-generic.c
92tc-generic.h
93tc-h8300.c
94tc-h8300.h
95tc-h8500.c
96tc-h8500.h
97tc-hppa.c
98tc-hppa.h
99tc-i386.c
100tc-i386.h
101tc-i860.c
102tc-i860.h
103tc-i960.c
104tc-i960.h
105tc-m68851.h
106tc-m68k.c
107tc-m68k.h
108tc-m88k.c
109tc-m88k.h
110tc-mips.c
111tc-mips.h
112tc-ns32k.c
113tc-ns32k.h
114tc-sh.c
115tc-sh.h
116tc-sparc.c
117tc-sparc.h
118tc-sparc64.c
119tc-sparc64.h
120tc-tahoe.c
121tc-tahoe.h
122tc-vax.c
123tc-vax.h
124tc-z8k.c
125tc-z8k.h
126te-386bsd.h
127te-dpx2.h
128te-generic.h
129te-hp300.h
130te-hppa.h
131te-i386aix.h
132te-ic960.h
133te-irix.h
134te-linux.h
135te-sco386.h
136te-sun3.h
137te-sysv32.h
138vax-inst.h
139z8k.mt
140
141Things-to-lose:
142
143
144
145Do-last:
146
147if ( echo $* | grep keep\-v9 > /dev/null ) ; then
148 echo Keeping tc-sparc64 and v9 stuff in tc-sparc.c obj-elf.h.
149else
150 echo Cleaning tc-sparc.c...
151 sed '/start\-sanitize/,/end-sanitize/d' < tc-sparc.c > new
152 if [ -n "${safe}" ] ; then
153 cp tc-sparc.c .Recover
154 fi
155 mv new tc-sparc.c
156 echo Cleaning obj-elf.h...
157 grep -v v9 < obj-elf.h > new
158 if [ -n "${safe}" ] ; then
159 cp obj-elf.h .Recover
160 fi
161 mv new obj-elf.h
162 echo Deleting tc-sparc64 files.
163 rm -f tc-sparc64.c tc-sparc64.h
164fi
165
166# End of file.
This page took 0.022195 seconds and 4 git commands to generate.