add delta68 config
[deliverable/binutils-gdb.git] / gas / config / .Sanitize
1 # .Sanitize for devo/gas/config
2
3 # Each directory to survive its 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 aout_gnu.h
27 alpha-opcode.h
28 atof-ieee.c
29 atof-tahoe.c
30 atof-vax.c
31 go32.cfg
32 h8300.mt
33 h8500.mt
34 i386coff.mt
35 m68k.mt
36 m68kcoff.mt
37 m88k-opcode.h
38 m88kcoff.mt
39 mips-big.mt
40 mips-lit.mt
41 obj-aout.c
42 obj-aout.h
43 obj-bout.c
44 obj-bout.h
45 obj-coff.c
46 obj-coff.h
47 obj-ecoff.c
48 obj-ecoff.h
49 obj-elf.c
50 obj-elf.h
51 obj-generic.c
52 obj-generic.h
53 obj-hp300.c
54 obj-hp300.h
55 obj-ieee.c
56 obj-ieee.h
57 obj-som.c
58 obj-som.h
59 obj-vms.c
60 obj-vms.h
61 sh.mt
62 tc-a29k.c
63 tc-a29k.h
64 tc-alpha.c
65 tc-alpha.h
66 tc-arm.c
67 tc-arm.h
68 tc-generic.c
69 tc-generic.h
70 tc-h8300.c
71 tc-h8300.h
72 tc-h8500.c
73 tc-h8500.h
74 tc-hppa.c
75 tc-hppa.h
76 tc-i386.c
77 tc-i386.h
78 tc-i860.c
79 tc-i860.h
80 tc-i960.c
81 tc-i960.h
82 tc-m68851.h
83 tc-m68k.c
84 tc-m68k.h
85 tc-m88k.c
86 tc-m88k.h
87 tc-mips.c
88 tc-mips.h
89 tc-ns32k.c
90 tc-ns32k.h
91 tc-ppc.c
92 tc-ppc.h
93 tc-sh.c
94 tc-sh.h
95 tc-sparc.c
96 tc-sparc.h
97 tc-tahoe.c
98 tc-tahoe.h
99 tc-vax.c
100 tc-vax.h
101 tc-z8k.c
102 tc-z8k.h
103 te-386bsd.h
104 te-delta.h
105 te-dpx2.h
106 te-generic.h
107 te-go32.h
108 te-hp300.h
109 te-hppa.h
110 te-i386aix.h
111 te-ic960.h
112 te-linux.h
113 te-lynx.h
114 te-mach.h
115 te-nbsd.h
116 te-nbsd532.h
117 te-pc532mach.h
118 te-ppcnw.h
119 te-sco386.h
120 te-sun3.h
121 te-sysv32.h
122 vax-inst.h
123 vms-conf.h
124 z8k.mt
125
126 Things-to-lose:
127
128 Do-last:
129
130 i960xl_files=tc-i960.c
131 if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
132 if [ -n "${verbose}" ] ; then
133 echo Keeping i960xl stuff in $i960xl_files.
134 fi
135 else
136 if [ -n "${verbose}" ]; then
137 echo -n Cleaning i960xl in `pwd`:
138 fi
139 for f in $i960xl_files ; do
140 if [ -n "${verbose}" ] ; then
141 echo -n " " $f
142 fi
143 grep -v XL < $f > new
144 if [ -n "${safe}" ] ; then
145 mv $f .Recover
146 fi
147 mv new $f
148 done
149 fi
150
151 # End of file.
This page took 0.038141 seconds and 5 git commands to generate.