7919817c4ba2aceefa472db9fae1bba491f47643
[deliverable/binutils-gdb.git] / gas / .Sanitize
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
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
30 CONTRIBUTORS
31 COPYING
32 ChangeLog
33 ChangeLog.v9
34 Makefile.in
35 NEWS
36 NOTES
37 NOTES.config
38 README
39 README-quirks
40 README-vms
41 README.coff
42 README.rich
43 app.c
44 as.c
45 as.h
46 atof-generic.c
47 bignum-copy.c
48 bignum.h
49 bit_fix.h
50 cond.c
51 config
52 config-gas.com
53 configure.bat
54 configure.in
55 debug.c
56 doc
57 ecoff.c
58 ecoff.h
59 expr.c
60 expr.h
61 flonum-copy.c
62 flonum-konst.c
63 flonum-mult.c
64 flonum.h
65 frags.c
66 frags.h
67 hash.c
68 hash.h
69 hex-value.c
70 input-file.c
71 input-file.h
72 input-scrub.c
73 link.cmd
74 listing.c
75 listing.h
76 make-gas.com
77 messages.c
78 obj.h
79 output-file.c
80 output-file.h
81 read.c
82 read.h
83 stabs.c
84 struc-symbol.h
85 subsegs.c
86 subsegs.h
87 symbols.c
88 symbols.h
89 tc.h
90 testsuite
91 write.c
92 write.h
93 xmalloc.c
94
95 Things-to-lose:
96
97 Do-last:
98
99 if ( echo $* | grep keep-v9 > /dev/null ) ; then
100 if [ -n "${verbose}" ] ; then
101 echo Keeping `pwd`/ChangeLog.v9.
102 echo Keeping v9 code in `pwd`/configure.in.
103 fi
104 else
105 if [ -n "${verbose}" ] ; then
106 echo Removing `pwd`/ChangeLog.v9
107 fi
108 if [ -n "${safe}" ] ; then
109 mv ChangeLog.v9 .Recover
110 else
111 rm ChangeLog.v9
112 fi
113 if [ -n "${verbose}" ] ; then
114 echo Cleaning v9 code from `pwd`/configure.in.
115 fi
116 grep -v v9 < configure.in > new
117 if [ -n "${safe}" ]; then
118 mv configure.in .Recover
119 fi
120 mv -f new configure.in
121 fi
122
123
124 #
125 #
126 # $Log$
127 # Revision 1.22 1993/11/22 06:04:32 law
128 # Add stabs.c to things-to-keep.
129 #
130 # Revision 1.21 1993/11/17 23:23:36 ian
131 # New files for ECOFF debugging split out of config/obj-ecoff.c.
132 #
133 # Revision 1.20 1993/06/04 23:06:28 raeburn
134 # clean v9 stuff out of configure.in
135 #
136 # Revision 1.19 1993/05/27 06:21:49 rich
137 # added things-to-lose sections
138 #
139 # Revision 1.18 1993/05/17 19:35:50 raeburn
140 # don't keep testscripts subdir
141 #
142 # Revision 1.17 1993/04/22 06:39:01 raeburn
143 # version.c is gone
144 #
145 # Revision 1.16 1993/03/29 13:26:44 raeburn
146 # First crack at a test suite.
147 #
148 # Revision 1.15 1993/02/13 10:12:16 zoo
149 # removing excess verbosity
150 #
151 # Revision 1.14 1993/01/08 14:40:59 raeburn
152 # keep config-gas.com.
153 # if purging v9, discard ChangeLog.v9, keep otherwise.
154 #
155 # Revision 1.13 1992/12/08 08:05:32 raeburn
156 # updated for added/deleted files
157 #
158 # Revision 1.12 1992/07/28 18:58:12 gumby
159 # Don't save obsolete/
160 #
161 # Revision 1.11 1992/03/13 16:04:15 sac
162 # Fri Mar 13 08:03:03 1992 Steve Chamberlain (sac@thepub.cygnus.com)
163 #
164 # * flonum-const.c: renamed flonum-konst.c to stop dos name
165 # conflict.
166 #
167 # Revision 1.10 1992/02/22 20:44:46 sac
168 # * app.c: MRI compatibility - allow single quote to start a string.
169 # * as.c: fix typo recently introduced.
170 # * as.h : Don't include aout/reloc.h - it's not right for COFF!
171 # * expr.c: Much rewriting, to accomodate MRI syntax for
172 # expressions. Also easier to read now.
173 # * listing.c: Put back defuns
174 # * read.c: modified to accept MRI syntax, put back listing pseudo
175 # ops so that an assembler built with NO_LISTING ignores list ops
176 # rather than pukes.
177 # * write.c, write.h: fixs - only keep a reloc type in a fix if the target
178 # machine is a SPARC or a 29K.
179 # * config/obj-aout.c: added s_sect pseudo op
180 # * config/obj-coffbfd.c: lints, set the filehdr flags right and
181 # fill in the timestamp.
182 # * config/obj-coffbfd.h: Since we don't include aout/reloc.h
183 # anymore, define all the relocs which the tc-<x> bit will use so we
184 # can translate from them to the coff types.
185 # * config/tc-a29k.c: reloc_type isn't ane enum any more
186 # * config/tc-m68k.c: Added NO_RELOC definition.
187 #
188 # Now compiles for sparc aout, 68k aout (MRI and MIT syntax),
189 # 29k coff.
190 #
191 # So far works as replacement for sparc and 68k /bin/as.
192 #
193 # Revision 1.9 1992/02/17 15:52:52 rich
194 # fighting bitrot in a major way
195 #
196 # Revision 1.8 1992/02/14 00:21:34 pesch
197 # It's OK to keep the doc subdirectory, really.
198 #
199 # Revision 1.7 1992/02/13 10:13:19 rich
200 # clean up Sanitize for gas
201 #
202 # Revision 1.6 1992/01/17 20:54:32 rich
203 # keep listing*
204 #
205 # Revision 1.5 1991/12/12 03:28:12 sac
206 # Added makefile.dos configure.dos
207 #
208 # Revision 1.4 1991/12/09 11:58:44 tiemann
209 # Keep a.out.gnu.h.
210 #
211 # Revision 1.3 1991/10/10 11:58:04 rich
212 # updating
213 #
214 # Revision 1.2 1991/09/02 01:05:04 rich
215 # Correcting some things.
216 #
217 # Revision 1.1 1991/05/23 17:18:12 rich
218 # Initial revision
219 #
220 #
221 #
222
223 # End of file.
This page took 0.0347 seconds and 3 git commands to generate.