]>
Commit | Line | Data |
---|---|---|
0fd8d5d9 RP |
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 | ||
18 | Do-first: | |
19 | ||
0fd8d5d9 RP |
20 | # All files listed between the "Things-to-keep:" line and the |
21 | # "Files-to-sed:" line will be kept. All other files will be removed. | |
22 | # Directories listed in this section will have their own Sanitize | |
23 | # called. Directories not listed will be removed in their entirety | |
24 | # with rm -rf. | |
25 | ||
26 | Things-to-keep: | |
27 | ||
8e71e6e3 | 28 | COPYING |
49d6a0e6 | 29 | ChangeLog |
0fd8d5d9 | 30 | a.out.encap.h |
0fd8d5d9 | 31 | a.out.host.h |
95b32bff | 32 | a.out.hp.h |
0fd8d5d9 | 33 | a.out.sun4.h |
0fd8d5d9 | 34 | a29k-opcode.h |
77507546 | 35 | h8300-opcode.h |
0fd8d5d9 RP |
36 | ansidecl.h |
37 | aout64.h | |
38 | ar.h | |
39 | arm-opcode.h | |
40 | bcs88kcoff.h | |
41 | bfd.h | |
42 | bout.h | |
40458cc9 | 43 | coff-a29k.h |
875f1391 | 44 | coff-h8300.h |
40458cc9 JG |
45 | coff-i386.h |
46 | coff-i960.h | |
47 | coff-mips.h | |
48 | coff-m68k.h | |
49 | coff-m88k.h | |
50 | coff-rs6000.h | |
0fd8d5d9 | 51 | convx-opcode.h |
fa4248e3 | 52 | dwarf.h |
b14f76ed JG |
53 | elf-common.h |
54 | elf-external.h | |
55 | elf-internal.h | |
0fd8d5d9 RP |
56 | gdbm.h |
57 | getopt.h | |
58 | i386-opcode.h | |
59 | i860-opcode.h | |
60 | i960-opcode.h | |
61 | ieee.h | |
0fd8d5d9 | 62 | m68k-opcode.h |
de9d4075 | 63 | internalcoff.h |
0fd8d5d9 RP |
64 | m88k-opcode.h |
65 | mips-opcode.h | |
66 | np1-opcode.h | |
67 | ns32k-opcode.h | |
68 | oasys.h | |
69 | obstack.h | |
70 | pn-opcode.h | |
71 | pyr-opcode.h | |
72 | ranlib.h | |
73 | reloc.h | |
74 | sparc-opcode.h | |
75 | stab.def | |
76 | stab.gnu.h | |
0fd8d5d9 RP |
77 | tahoe-opcode.h |
78 | vax-opcode.h | |
79 | wait.h | |
80 | ||
81 | Do-last: | |
82 | ||
5f62d65b | 83 | v9dirty="sparc-opcode.h aout64.h" |
0fd8d5d9 | 84 | |
24d6615c | 85 | if ( echo $* | grep keep\-v9 > /dev/null ) ; then |
5f62d65b | 86 | echo Keeping v9 in ${v9dirty} |
24d6615c | 87 | else |
5f62d65b RP |
88 | for i in ${v9dirty} ; do |
89 | echo Sanitizing v9 in $i | |
90 | rm -f new | |
91 | grep -v v9 $i > new | |
92 | if [ -n "${safe}" ] ; then | |
93 | mv $i .Recover | |
94 | else | |
2fbf0d18 | 95 | rm $i |
5f62d65b RP |
96 | fi |
97 | mv new $i | |
98 | done | |
24d6615c JG |
99 | fi |
100 | ||
0fd8d5d9 RP |
101 | echo Done in `pwd`. |
102 | ||
103 | # | |
104 | # | |
105 | # $Log$ | |
875f1391 SC |
106 | # Revision 1.22 1991/11/27 22:25:34 sac |
107 | # Added coff-h8300.h | |
108 | # | |
109 | # Revision 1.21 1991/11/21 04:06:22 gnu | |
95b32bff JG |
110 | # Bring in HP a.out remnants from GDB. Eliminate obsolete a.out.gnu.h. |
111 | # | |
112 | # Revision 1.20 1991/10/25 10:21:10 gnu | |
40458cc9 JG |
113 | # Rename coff-related files. |
114 | # | |
115 | # Revision 1.19 1991/10/25 07:59:50 gnu | |
fa8f1d09 JG |
116 | # rs6000 |
117 | # | |
118 | # Revision 1.18 1991/10/24 18:12:14 fnf | |
fa4248e3 FF |
119 | # Add "dwarf.h". |
120 | # | |
121 | # Revision 1.17 1991/10/16 01:08:08 gnu | |
775e3a22 JG |
122 | # Remove include files to bfd/hosts. |
123 | # | |
124 | # Revision 1.16 1991/10/05 06:18:24 gnu | |
08c6aacc JG |
125 | # a.out.vax.h gone. |
126 | # | |
127 | # Revision 1.15 1991/10/03 22:24:27 gnu | |
b14f76ed JG |
128 | # Add elf-*.h files. |
129 | # | |
130 | # Revision 1.14 1991/09/26 22:46:53 steve | |
77507546 SC |
131 | # Newly created |
132 | # | |
133 | # Revision 1.13 1991/09/13 05:17:53 gnu | |
2fbf0d18 JG |
134 | # Removes sparc-opcode.h rather than the file it is sanitizing, if not testing! |
135 | # (fixed...) | |
136 | # | |
137 | # Revision 1.12 1991/09/04 02:51:18 rich | |
5f62d65b RP |
138 | # Adding "recover"'ability. |
139 | # | |
140 | # Revision 1.11 1991/09/02 21:21:47 rich | |
1312dccc RP |
141 | # Recover the editted files. |
142 | # | |
143 | # Revision 1.10 1991/08/29 00:34:45 gnu | |
4d84d6ad JG |
144 | # Paperwork handled for AMD Coff. |
145 | # | |
146 | # Revision 1.9 1991/08/22 08:00:35 gnu | |
49d6a0e6 JG |
147 | # Add ChangeLog for Include. |
148 | # | |
149 | # Revision 1.8 1991/07/31 17:36:04 gnu | |
3097f718 JG |
150 | # Remove amdcoff.h by default because its copyright is not assigned to FSF. |
151 | # "Sanitize -keep-29k" will keep it. | |
152 | # | |
153 | # Revision 1.7 1991/07/31 03:11:46 gnu | |
51c27f49 JG |
154 | # Remove symseg.h, the ancient GDB symbol-segments (gdb-specific debug |
155 | # information) definition. | |
156 | # | |
157 | # Revision 1.6 1991/07/24 01:07:25 gnu | |
8e71e6e3 JG |
158 | # Add COPYING file. |
159 | # | |
160 | # Revision 1.5 1991/07/24 00:47:13 gnu | |
24d6615c JG |
161 | # Blow away v9 stuff in aout64.h too. |
162 | # | |
163 | # Revision 1.4 1991/07/15 23:34:14 steve | |
a737c70b SC |
164 | # *** empty log message *** |
165 | # | |
166 | # Revision 1.3 1991/06/14 22:14:07 steve | |
de9d4075 SC |
167 | # *** empty log message *** |
168 | # | |
169 | # Revision 1.2 1991/05/31 11:26:52 gnu | |
137a7f11 JG |
170 | # Add i386coff.h. Print msg when sanitizing sparc-opcode.h. |
171 | # | |
172 | # Revision 1.1 1991/05/23 17:00:59 rich | |
0fd8d5d9 RP |
173 | # Initial revision |
174 | # | |
175 | # | |
176 | # | |
177 | ||
178 | # End of file. |