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