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