Always keep MPW support
[deliverable/binutils-gdb.git] / gas / .Sanitize
1 # .Sanitize for devo/gas.
2
3 # Each directory to survive its way into a release will need a file
4 # like this one called "./.Sanitize". All keyword lines must exist,
5 # and must exist in the order specified by this file. Each directory
6 # in the tree will be processed, top down, in the following order.
7
8 # Hash started lines like this one are comments and will be deleted
9 # before anything else is done. Blank lines will also be squashed
10 # out.
11
12 # The lines between the "Do-first:" line and the "Things-to-keep:"
13 # line are executed as a /bin/sh shell script before anything else is
14 # done in this directory.
15
16 Do-first:
17
18 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
22 # with rm -rf.
23
24 Things-to-keep:
25
26 CONTRIBUTORS
27 COPYING
28 ChangeLog
29 Makefile.in
30 NEWS
31 NOTES
32 NOTES.config
33 README
34 README-quirks
35 README-vms
36 README.coff
37 README.rich
38 acconfig.h
39 aclocal.m4
40 app.c
41 as.c
42 as.h
43 atof-generic.c
44 bignum-copy.c
45 bignum.h
46 bit_fix.h
47 cond.c
48 conf.in
49 config
50 config-gas.com
51 configure
52 configure.bat
53 configure.in
54 debug.c
55 doc
56 ecoff.c
57 ecoff.h
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 gasp.c
67 gdbinit.in
68 hash.c
69 hash.h
70 input-file.c
71 input-file.h
72 input-scrub.c
73 link.cmd
74 listing.c
75 listing.h
76 literal.c
77 messages.c
78 mpw-config.in
79 mpw-make.in
80 obj.h
81 output-file.c
82 output-file.h
83 read.c
84 read.h
85 stabs.c
86 struc-symbol.h
87 subsegs.c
88 subsegs.h
89 symbols.c
90 symbols.h
91 tc.h
92 testsuite
93 vmsconf.sh
94 write.c
95 write.h
96 xmalloc.c
97
98 Things-to-lose:
99
100 Do-last:
101
102 i960xl_files=ChangeLog
103 if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
104 if [ -n "${verbose}" ] ; then
105 echo Keeping i960xl stuff in $i960xl_files.
106 fi
107 else
108 if [ -n "${verbose}" ]; then
109 echo -n Cleaning i960xl in `pwd`:
110 fi
111 for f in $i960xl_files ; do
112 if [ -n "${verbose}" ] ; then
113 echo -n " " $f
114 fi
115 sed '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' < $f > new
116 if [ -n "${safe}" ] ; then
117 mv $f .Recover
118 fi
119 mv new $f
120 done
121 fi
122
123 rce_files="configure.in as.c configure ChangeLog"
124
125 if ( echo $* | grep keep\-rce > /dev/null ) ; then
126 for i in $rce_files ; do
127 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
128 if [ -n "${verbose}" ] ; then
129 echo Keeping rce stuff in $i
130 fi
131 fi
132 done
133 else
134 for i in $rce_files ; do
135 if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then
136 if [ -n "${verbose}" ] ; then
137 echo Removing traces of \"rce\" from $i...
138 fi
139 cp $i new
140 sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new
141 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
142 if [ -n "${verbose}" ] ; then
143 echo Caching $i in .Recover...
144 fi
145 mv $i .Recover
146 fi
147 mv new $i
148 fi
149 done
150 fi
151
152 arc_files="ChangeLog configure.in configure"
153 if ( echo $* | grep keep\-arc > /dev/null ) ; then
154 for i in $arc_files ; do
155 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
156 if [ -n "${verbose}" ] ; then
157 echo Keeping arc stuff in $i
158 fi
159 fi
160 done
161 else
162 for i in $arc_files ; do
163 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
164 if [ -n "${verbose}" ] ; then
165 echo Removing traces of \"arc\" from $i...
166 fi
167 cp $i new
168 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
169 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
170 if [ -n "${verbose}" ] ; then
171 echo Caching $i in .Recover...
172 fi
173 mv $i .Recover
174 fi
175 mv new $i
176 fi
177 done
178 fi
179
180 for i in * ; do
181 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
182 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
183 fi
184 done
185
186 #
187 # End of file.
This page took 0.040128 seconds and 5 git commands to generate.