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