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