]>
Commit | Line | Data |
---|---|---|
d4d5412d 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 | ||
d4d5412d RP |
20 | |
21 | # All files listed between the "Things-to-keep:" line and the | |
22 | # "Files-to-sed:" line will be kept. All other files will be removed. | |
23 | # Directories listed in this section will have their own Sanitize | |
24 | # called. Directories not listed will be removed in their entirety | |
25 | # with rm -rf. | |
26 | ||
27 | Things-to-keep: | |
28 | ||
29 | .gdbinit | |
eee109cd | 30 | CONTRIBUTORS |
d4d5412d RP |
31 | COPYING |
32 | ChangeLog | |
003acb2d | 33 | ChangeLog.v9 |
d4d5412d | 34 | Makefile.in |
eee109cd | 35 | NEWS |
d4d5412d RP |
36 | NOTES |
37 | NOTES.config | |
38 | README | |
920babce | 39 | README-quirks |
eee109cd | 40 | README-vms |
d4d5412d RP |
41 | README.coff |
42 | README.rich | |
43 | app.c | |
44 | as.c | |
45 | as.h | |
46 | atof-generic.c | |
d4d5412d RP |
47 | bignum-copy.c |
48 | bignum.h | |
eee109cd | 49 | bit_fix.h |
d4d5412d RP |
50 | cond.c |
51 | config | |
003acb2d | 52 | config-gas.com |
c593cf41 | 53 | configure.bat |
d4d5412d RP |
54 | configure.in |
55 | debug.c | |
a262a1b2 | 56 | doc |
d4d5412d RP |
57 | expr.c |
58 | expr.h | |
d4d5412d | 59 | flonum-copy.c |
eee109cd | 60 | flonum-konst.c |
d4d5412d RP |
61 | flonum-mult.c |
62 | flonum.h | |
63 | frags.c | |
64 | frags.h | |
65 | hash.c | |
66 | hash.h | |
67 | hex-value.c | |
68 | input-file.c | |
69 | input-file.h | |
70 | input-scrub.c | |
920babce | 71 | link.cmd |
d7d28d22 RP |
72 | listing.c |
73 | listing.h | |
d4d5412d RP |
74 | make-gas.com |
75 | messages.c | |
76 | obj.h | |
d4d5412d RP |
77 | output-file.c |
78 | output-file.h | |
79 | read.c | |
80 | read.h | |
d4d5412d RP |
81 | struc-symbol.h |
82 | subsegs.c | |
83 | subsegs.h | |
84 | symbols.c | |
85 | symbols.h | |
86 | tc.h | |
f70a4714 | 87 | testsuite |
d4d5412d RP |
88 | write.c |
89 | write.h | |
90 | xmalloc.c | |
d4d5412d RP |
91 | |
92 | Do-last: | |
93 | ||
003acb2d KR |
94 | if ( echo $* | grep keep-v9 > /dev/null ) ; then |
95 | echo Keeping ChangeLog.v9. | |
96 | else | |
97 | echo Removing ChangeLog.v9 | |
98 | if [ -n "${safe}" ] ; then | |
99 | mv ChangeLog.v9 .Recover | |
100 | else | |
101 | rm ChangeLog.v9 | |
102 | fi | |
103 | fi | |
104 | ||
d4d5412d RP |
105 | |
106 | # | |
107 | # | |
108 | # $Log$ | |
cf9b9578 KR |
109 | # Revision 1.18 1993/05/17 19:35:50 raeburn |
110 | # don't keep testscripts subdir | |
111 | # | |
112 | # Revision 1.17 1993/04/22 06:39:01 raeburn | |
7e97646e KR |
113 | # version.c is gone |
114 | # | |
115 | # Revision 1.16 1993/03/29 13:26:44 raeburn | |
f70a4714 KR |
116 | # First crack at a test suite. |
117 | # | |
118 | # Revision 1.15 1993/02/13 10:12:16 zoo | |
7c859290 DZ |
119 | # removing excess verbosity |
120 | # | |
121 | # Revision 1.14 1993/01/08 14:40:59 raeburn | |
003acb2d KR |
122 | # keep config-gas.com. |
123 | # if purging v9, discard ChangeLog.v9, keep otherwise. | |
124 | # | |
125 | # Revision 1.13 1992/12/08 08:05:32 raeburn | |
eee109cd KR |
126 | # updated for added/deleted files |
127 | # | |
128 | # Revision 1.12 1992/07/28 18:58:12 gumby | |
d81eea83 DHW |
129 | # Don't save obsolete/ |
130 | # | |
131 | # Revision 1.11 1992/03/13 16:04:15 sac | |
5d53038b SC |
132 | # Fri Mar 13 08:03:03 1992 Steve Chamberlain ([email protected]) |
133 | # | |
134 | # * flonum-const.c: renamed flonum-konst.c to stop dos name | |
135 | # conflict. | |
136 | # | |
137 | # Revision 1.10 1992/02/22 20:44:46 sac | |
c593cf41 SC |
138 | # * app.c: MRI compatibility - allow single quote to start a string. |
139 | # * as.c: fix typo recently introduced. | |
140 | # * as.h : Don't include aout/reloc.h - it's not right for COFF! | |
141 | # * expr.c: Much rewriting, to accomodate MRI syntax for | |
142 | # expressions. Also easier to read now. | |
143 | # * listing.c: Put back defuns | |
144 | # * read.c: modified to accept MRI syntax, put back listing pseudo | |
145 | # ops so that an assembler built with NO_LISTING ignores list ops | |
146 | # rather than pukes. | |
147 | # * write.c, write.h: fixs - only keep a reloc type in a fix if the target | |
148 | # machine is a SPARC or a 29K. | |
149 | # * config/obj-aout.c: added s_sect pseudo op | |
150 | # * config/obj-coffbfd.c: lints, set the filehdr flags right and | |
151 | # fill in the timestamp. | |
152 | # * config/obj-coffbfd.h: Since we don't include aout/reloc.h | |
153 | # anymore, define all the relocs which the tc-<x> bit will use so we | |
154 | # can translate from them to the coff types. | |
155 | # * config/tc-a29k.c: reloc_type isn't ane enum any more | |
156 | # * config/tc-m68k.c: Added NO_RELOC definition. | |
157 | # | |
158 | # Now compiles for sparc aout, 68k aout (MRI and MIT syntax), | |
159 | # 29k coff. | |
160 | # | |
161 | # So far works as replacement for sparc and 68k /bin/as. | |
162 | # | |
163 | # Revision 1.9 1992/02/17 15:52:52 rich | |
542e1629 RP |
164 | # fighting bitrot in a major way |
165 | # | |
166 | # Revision 1.8 1992/02/14 00:21:34 pesch | |
a262a1b2 RP |
167 | # It's OK to keep the doc subdirectory, really. |
168 | # | |
169 | # Revision 1.7 1992/02/13 10:13:19 rich | |
920babce RP |
170 | # clean up Sanitize for gas |
171 | # | |
172 | # Revision 1.6 1992/01/17 20:54:32 rich | |
d7d28d22 RP |
173 | # keep listing* |
174 | # | |
175 | # Revision 1.5 1991/12/12 03:28:12 sac | |
28bf2d31 SC |
176 | # Added makefile.dos configure.dos |
177 | # | |
178 | # Revision 1.4 1991/12/09 11:58:44 tiemann | |
e530f5c4 MT |
179 | # Keep a.out.gnu.h. |
180 | # | |
181 | # Revision 1.3 1991/10/10 11:58:04 rich | |
1a315703 RP |
182 | # updating |
183 | # | |
184 | # Revision 1.2 1991/09/02 01:05:04 rich | |
abf2ca6c RP |
185 | # Correcting some things. |
186 | # | |
187 | # Revision 1.1 1991/05/23 17:18:12 rich | |
d4d5412d RP |
188 | # Initial revision |
189 | # | |
190 | # | |
191 | # | |
192 | ||
193 | # End of file. |