Need to declare nlm32_sparc_vec; oopsie.
[deliverable/binutils-gdb.git] / .Sanitize
... / ...
CommitLineData
1# .Sanitize for devo.
2
3# Each directory to survive it's 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
16Do-first:
17
18if ( echo $* | grep keep\-chill > /dev/null ) ; then
19 keep_these_too="chillrt test-chill"
20else
21 lose_these_too="chillrt test-chill"
22fi
23
24if ( echo $* | grep keep\-cygnus > /dev/null) ; then
25 keep_these_too="${keep_these_too} release release-info build-all.mk"
26else
27 lose_these_too="${lose_these_too} release release-info build-all.mk"
28fi
29
30
31# All files listed between the "Things-to-keep:" line and the
32# "Do-last:" line will be kept. All other files will be removed.
33# Directories listed in this section will have their own Sanitize
34# called. Directories not listed will be removed in their entirety
35# with rm -rf.
36
37Things-to-keep:
38
39.cvsignore
40COPYING
41COPYING.LIB
42CYGNUS
43ChangeLog
44Makefile.in
45README
46autoconf
47bfd
48binutils
49byacc
50config
51config.guess
52config.sub
53configure
54configure.bat
55configure.in
56cvs
57deja-gnu
58dejagnu
59diff
60dvips
61emacs
62etc
63expect
64fileutils
65flex
66gas
67gcc
68gdb
69gdbm
70gdbtest
71glob
72gprof
73grep
74groff
75include
76install.sh
77ispell
78ld
79libg++
80libgcc
81libiberty
82libio
83m4
84make
85mmalloc
86move-if-change
87newlib
88opcodes
89pagas
90patch
91prms
92rcs
93readline
94sed
95send-pr
96shellutils
97sim
98tcl
99textutils
100tk
101test-build.mk
102texinfo
103tgas
104utils
105uudecode
106wdiff
107xiberty
108
109Things-to-lose:
110
111# The lines between the "Do-last:" line and the end of the file
112# are executed as a /bin/sh shell script after everything else is
113# done.
114
115Do-last:
116
117if ( echo $* | egrep verbose > /dev/null ) ; then
118 verbose=true
119else
120 verbose=
121fi
122
123if [ -n "${verbose}" ] ; then
124 echo Looking for signs of \"v9\"...
125fi
126
127# Don't try to clean directories here, as the 'mv' command will fail.
128# Also, grep fails on NFS mounted directories.
129if ( echo $* | grep keep\-v9 > /dev/null ) ; then
130 for i in * ; do
131 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
132 if [ -n "${verbose}" ] ; then
133 echo Keeping v9 stuff in $i
134 fi
135 fi
136 done
137else
138 for i in * ; do
139 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
140 if [ -n "${verbose}" ] ; then
141 echo Cleaning the \"v9\" out of $i...
142 fi
143 cp $i new
144 sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
145 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
146 mv $i .Recover
147 fi
148 mv new $i
149 fi
150 done
151fi
152
153if [ -n "${verbose}" ] ; then
154 echo Thawing away the \"chill\"...
155fi
156
157# Don't try to clean directories here, as the 'mv' command will fail.
158# Also, grep fails on NFS mounted directories.
159if ( echo $* | grep keep\-chill > /dev/null ) ; then
160 for i in * ; do
161 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
162 if [ -n "${verbose}" ] ; then
163 echo Keeping chill stuff in $i
164 fi
165 fi
166 done
167else
168 for i in * ; do
169 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
170 if [ -n "${verbose}" ] ; then
171 echo Thawing the \"chill\" out of $i...
172 fi
173 cp $i new
174 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
175 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
176 if [ -n "${verbose}" ] ; then
177 echo Caching $i in .Recover...
178 fi
179 mv $i .Recover
180 fi
181 mv new $i
182 fi
183 done
184fi
185
186for i in * ; do
187 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
188 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
189 fi
190done
191
192# eof
This page took 0.032017 seconds and 4 git commands to generate.