]>
Commit | Line | Data |
---|---|---|
43e36dd2 | 1 | # .Sanitize for devo. |
a93b3c77 | 2 | |
5db7ecb7 | 3 | # Each directory to survive its way into a release will need a file |
a93b3c77 RP |
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 | |
43e36dd2 | 14 | # done in this directory. |
a93b3c77 RP |
15 | |
16 | Do-first: | |
17 | ||
eccc57e5 | 18 | cygnus_files="release release-info build-all.mk" |
96c805d8 | 19 | |
7d0eab7b | 20 | if ( echo $* | grep keep\-cygnus > /dev/null) ; then |
96c805d8 | 21 | keep_these_too="${keep_these_too} ${cygnus_files}" |
80cad9cc | 22 | else |
96c805d8 | 23 | lose_these_too="${lose_these_too} ${cygnus_files}" |
7d0eab7b DZ |
24 | fi |
25 | ||
eccc57e5 | 26 | mpw_files="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw" |
96c805d8 | 27 | |
5db7ecb7 | 28 | if ( echo $* | grep keep\-mpw > /dev/null) ; then |
96c805d8 | 29 | keep_these_too="${keep_these_too} ${mpw_files}" |
5db7ecb7 | 30 | else |
96c805d8 | 31 | lose_these_too="${lose_these_too} ${mpw_files}" |
5db7ecb7 | 32 | fi |
7d0eab7b | 33 | |
a93b3c77 | 34 | # All files listed between the "Things-to-keep:" line and the |
43e36dd2 | 35 | # "Do-last:" line will be kept. All other files will be removed. |
a93b3c77 RP |
36 | # Directories listed in this section will have their own Sanitize |
37 | # called. Directories not listed will be removed in their entirety | |
38 | # with rm -rf. | |
39 | ||
40 | Things-to-keep: | |
41 | ||
c9b36b5f | 42 | .cvsignore |
6e37b215 PB |
43 | COPYING |
44 | COPYING.LIB | |
6227a92b | 45 | CYGNUS |
57d32184 | 46 | ChangeLog |
a93b3c77 | 47 | Makefile.in |
965a9f14 | 48 | README |
28f760d3 | 49 | autoconf |
d5eb68fa | 50 | bfd |
ebec4684 | 51 | binutils |
6a2d7603 | 52 | byacc |
a93b3c77 | 53 | config |
5cc24596 | 54 | config.guess |
db2de419 | 55 | config.sub |
a93b3c77 RP |
56 | configure |
57 | configure.in | |
cdabe523 | 58 | cvs |
8ec1b2a1 | 59 | deja-gnu |
d623fd7e | 60 | dejagnu |
5781b1ba | 61 | diff |
632ee4a1 | 62 | dosrel |
4e0c2de7 | 63 | dvips |
cdabe523 | 64 | emacs |
df9548f6 | 65 | emacs19 |
701df845 | 66 | etc |
3cdf5901 | 67 | examples |
17519312 | 68 | expect |
4e0c2de7 | 69 | fileutils |
49df2308 | 70 | flex |
a93b3c77 | 71 | gas |
ebec4684 RP |
72 | gcc |
73 | gdb | |
f3d3d2cd | 74 | gdbm |
e72c4b3a | 75 | gdbtest |
f7f4df6a | 76 | glob |
9a14a29d | 77 | gprof |
5781b1ba | 78 | grep |
4e0c2de7 | 79 | groff |
a93b3c77 | 80 | include |
4a01dc52 | 81 | install.sh |
2dbd15d2 | 82 | ispell |
ebec4684 | 83 | ld |
0862386b | 84 | libg++ |
e72c4b3a RP |
85 | libgcc |
86 | libiberty | |
7c4dd2c8 | 87 | libio |
c71a8d1d | 88 | librx |
4e0c2de7 | 89 | m4 |
cdabe523 | 90 | make |
d592622a | 91 | mmalloc |
e72c4b3a | 92 | move-if-change |
6ae8fff5 | 93 | newlib |
aa06ff7e | 94 | opcodes |
ba8acf46 | 95 | pagas |
57d32184 | 96 | patch |
d42563da | 97 | prms |
3c8735af | 98 | rcs |
a93b3c77 | 99 | readline |
4e0c2de7 | 100 | sed |
00d8b290 | 101 | send-pr |
4e0c2de7 | 102 | shellutils |
da7e4b5c | 103 | sim |
17519312 | 104 | tcl |
4e0c2de7 DZ |
105 | textutils |
106 | tk | |
c9b36b5f | 107 | test-build.mk |
d239963b | 108 | texinfo |
14bed8ee | 109 | tgas |
ba8acf46 | 110 | utils |
fa64be8d | 111 | uudecode |
4e0c2de7 DZ |
112 | wdiff |
113 | xiberty | |
a93b3c77 | 114 | |
87756e15 RP |
115 | Things-to-lose: |
116 | ||
43e36dd2 RP |
117 | # The lines between the "Do-last:" line and the end of the file |
118 | # are executed as a /bin/sh shell script after everything else is | |
119 | # done. | |
120 | ||
a93b3c77 RP |
121 | Do-last: |
122 | ||
7b85349f RP |
123 | if ( echo $* | egrep verbose > /dev/null ) ; then |
124 | verbose=true | |
125 | else | |
126 | verbose= | |
127 | fi | |
128 | ||
eecef7ef FF |
129 | # Remove "sanitize-Sanitize" lines. |
130 | if [ -n "${verbose}" ] ; then | |
131 | echo Cleaning unconditional sanitizations out of Makefile.in... | |
132 | fi | |
133 | cp Makefile.in new | |
134 | sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new | |
135 | if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then | |
136 | mv Makefile.in .Recover | |
137 | fi | |
138 | mv new Makefile.in | |
139 | ||
7b85349f RP |
140 | if [ -n "${verbose}" ] ; then |
141 | echo Thawing away the \"chill\"... | |
142 | fi | |
5d4ec851 FF |
143 | |
144 | # Don't try to clean directories here, as the 'mv' command will fail. | |
145 | # Also, grep fails on NFS mounted directories. | |
146 | if ( echo $* | grep keep\-chill > /dev/null ) ; then | |
147 | for i in * ; do | |
148 | if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then | |
7b85349f RP |
149 | if [ -n "${verbose}" ] ; then |
150 | echo Keeping chill stuff in $i | |
151 | fi | |
5d4ec851 FF |
152 | fi |
153 | done | |
154 | else | |
155 | for i in * ; do | |
156 | if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then | |
7b85349f RP |
157 | if [ -n "${verbose}" ] ; then |
158 | echo Thawing the \"chill\" out of $i... | |
159 | fi | |
5d4ec851 FF |
160 | cp $i new |
161 | sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new | |
162 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
7b85349f RP |
163 | if [ -n "${verbose}" ] ; then |
164 | echo Caching $i in .Recover... | |
165 | fi | |
5d4ec851 FF |
166 | mv $i .Recover |
167 | fi | |
168 | mv new $i | |
169 | fi | |
170 | done | |
5d4ec851 FF |
171 | fi |
172 | ||
5db7ecb7 SS |
173 | if [ -n "${verbose}" ] ; then |
174 | echo Removing traces of \"mpw\"... | |
175 | fi | |
176 | ||
177 | # Don't try to clean directories here, as the 'mv' command will fail. | |
178 | # Also, grep fails on NFS mounted directories. | |
179 | if ( echo $* | grep keep\-mpw > /dev/null ) ; then | |
180 | for i in * ; do | |
181 | if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then | |
182 | if [ -n "${verbose}" ] ; then | |
183 | echo Keeping mpw stuff in $i | |
184 | fi | |
185 | fi | |
186 | done | |
187 | else | |
188 | for i in * ; do | |
189 | if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then | |
190 | if [ -n "${verbose}" ] ; then | |
191 | echo Removing traces of \"mpw\" from $i... | |
192 | fi | |
193 | cp $i new | |
194 | sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new | |
195 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
196 | if [ -n "${verbose}" ] ; then | |
197 | echo Caching $i in .Recover... | |
198 | fi | |
199 | mv $i .Recover | |
200 | fi | |
201 | mv new $i | |
202 | fi | |
203 | done | |
204 | fi | |
205 | ||
e11b54be PB |
206 | for i in * ; do |
207 | if test ! -d $i && (grep sanitize $i > /dev/null) ; then | |
7b85349f | 208 | echo '***' Some mentions of Sanitize are still left in $i! 1>&2 |
e11b54be PB |
209 | fi |
210 | done | |
57d32184 RP |
211 | |
212 | # eof |