First crack at a test suite.
[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 expr.c
58 expr.h
59 flonum-copy.c
60 flonum-konst.c
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
71 link.cmd
72 listing.c
73 listing.h
74 make-gas.com
75 messages.c
76 obj.h
77 output-file.c
78 output-file.h
79 read.c
80 read.h
81 struc-symbol.h
82 subsegs.c
83 subsegs.h
84 symbols.c
85 symbols.h
86 tc.h
87 testscripts
88 testsuite
89 version.c
90 write.c
91 write.h
92 xmalloc.c
93
94 Do-last:
95
96 if ( echo $* | grep keep-v9 > /dev/null ) ; then
97 echo Keeping ChangeLog.v9.
98 else
99 echo Removing ChangeLog.v9
100 if [ -n "${safe}" ] ; then
101 mv ChangeLog.v9 .Recover
102 else
103 rm ChangeLog.v9
104 fi
105 fi
106
107
108 #
109 #
110 # $Log$
111 # Revision 1.16 1993/03/29 13:26:44 raeburn
112 # First crack at a test suite.
113 #
114 # Revision 1.15 1993/02/13 10:12:16 zoo
115 # removing excess verbosity
116 #
117 # Revision 1.14 1993/01/08 14:40:59 raeburn
118 # keep config-gas.com.
119 # if purging v9, discard ChangeLog.v9, keep otherwise.
120 #
121 # Revision 1.13 1992/12/08 08:05:32 raeburn
122 # updated for added/deleted files
123 #
124 # Revision 1.12 1992/07/28 18:58:12 gumby
125 # Don't save obsolete/
126 #
127 # Revision 1.11 1992/03/13 16:04:15 sac
128 # Fri Mar 13 08:03:03 1992 Steve Chamberlain (sac@thepub.cygnus.com)
129 #
130 # * flonum-const.c: renamed flonum-konst.c to stop dos name
131 # conflict.
132 #
133 # Revision 1.10 1992/02/22 20:44:46 sac
134 # * app.c: MRI compatibility - allow single quote to start a string.
135 # * as.c: fix typo recently introduced.
136 # * as.h : Don't include aout/reloc.h - it's not right for COFF!
137 # * expr.c: Much rewriting, to accomodate MRI syntax for
138 # expressions. Also easier to read now.
139 # * listing.c: Put back defuns
140 # * read.c: modified to accept MRI syntax, put back listing pseudo
141 # ops so that an assembler built with NO_LISTING ignores list ops
142 # rather than pukes.
143 # * write.c, write.h: fixs - only keep a reloc type in a fix if the target
144 # machine is a SPARC or a 29K.
145 # * config/obj-aout.c: added s_sect pseudo op
146 # * config/obj-coffbfd.c: lints, set the filehdr flags right and
147 # fill in the timestamp.
148 # * config/obj-coffbfd.h: Since we don't include aout/reloc.h
149 # anymore, define all the relocs which the tc-<x> bit will use so we
150 # can translate from them to the coff types.
151 # * config/tc-a29k.c: reloc_type isn't ane enum any more
152 # * config/tc-m68k.c: Added NO_RELOC definition.
153 #
154 # Now compiles for sparc aout, 68k aout (MRI and MIT syntax),
155 # 29k coff.
156 #
157 # So far works as replacement for sparc and 68k /bin/as.
158 #
159 # Revision 1.9 1992/02/17 15:52:52 rich
160 # fighting bitrot in a major way
161 #
162 # Revision 1.8 1992/02/14 00:21:34 pesch
163 # It's OK to keep the doc subdirectory, really.
164 #
165 # Revision 1.7 1992/02/13 10:13:19 rich
166 # clean up Sanitize for gas
167 #
168 # Revision 1.6 1992/01/17 20:54:32 rich
169 # keep listing*
170 #
171 # Revision 1.5 1991/12/12 03:28:12 sac
172 # Added makefile.dos configure.dos
173 #
174 # Revision 1.4 1991/12/09 11:58:44 tiemann
175 # Keep a.out.gnu.h.
176 #
177 # Revision 1.3 1991/10/10 11:58:04 rich
178 # updating
179 #
180 # Revision 1.2 1991/09/02 01:05:04 rich
181 # Correcting some things.
182 #
183 # Revision 1.1 1991/05/23 17:18:12 rich
184 # Initial revision
185 #
186 #
187 #
188
189 # End of file.
This page took 0.035168 seconds and 5 git commands to generate.