* objcopy.c (parse_flags): Make flag check case insensitive.
[deliverable/binutils-gdb.git] / sim / .Sanitize
CommitLineData
b0c9f026
SC
1# .Sanitize for devo/sim.
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
15
16Do-first:
17
bfebf1a5 18d30v_files="d30v"
317df3b5 19if ( echo $* | grep keep\-d30v > /dev/null ) ; then
f13f11b4 20 keep_these_too="${d30v_files} ${keep_these_too}"
317df3b5
AC
21else
22 lose_these_too="${d30v_files} ${lose_these_too}"
23fi
24
19a2b300 25tic80_files="tic80"
15c16493 26if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
f13f11b4 27 keep_these_too="${tic80_files} ${keep_these_too}"
15c16493
AC
28else
29 lose_these_too="${tic80_files} ${lose_these_too}"
30fi
31
f13f11b4 32lose_these_too="${lose_these_too}"
19a2b300 33
b0c9f026
SC
34# All files listed between the "Things-to-keep:" line and the
35# "Files-to-sed:" line will be kept. All other files will be removed.
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
40Things-to-keep:
41
83a4c26f 42ChangeLog
55538130 43Makefile.in
117224ea 44README-HACKING
d32033ad 45arm
1ffd292b 46configure
b0c9f026 47configure.in
60181796 48common
22540e2d 49d10v
fd58f4b1 50erc32
b0c9f026 51h8300
a66ad4b2 52h8500
f13f11b4 53igen
3990f1cd 54m32r
2f82f755 55mips
c1848bd2 56mn10200
05ccbdfd 57mn10300
cb7a6892 58ppc
594266fc 59sh
f13f11b4 60v850
bfebf1a5 61testsuite
4a5947d0 62w65
b0c9f026
SC
63z8k
64
87756e15
RP
65Things-to-lose:
66
447a825b 67
b0c9f026
SC
68Do-last:
69
15c16493
AC
70d30v_files="configure configure.in ChangeLog"
71if ( echo $* | grep keep\-d30v > /dev/null ) ; then
72 for i in $d30v_files ; do
73 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
82feb39e 74 if [ -n "${verbose}" ] ; then
15c16493 75 echo Keeping d30v stuff in $i
82feb39e
JL
76 fi
77 fi
78 done
79else
15c16493
AC
80 for i in $d30v_files ; do
81 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
82feb39e 82 if [ -n "${verbose}" ] ; then
15c16493 83 echo Removing traces of \"d30v\" from $i...
82feb39e
JL
84 fi
85 cp $i new
15c16493 86 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
82feb39e
JL
87 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
88 if [ -n "${verbose}" ] ; then
89 echo Caching $i in .Recover...
90 fi
91 mv $i .Recover
92 fi
93 mv new $i
94 fi
95 done
96fi
317df3b5 97
15c16493
AC
98tic80_files="configure configure.in ChangeLog"
99if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
100 for i in $tic80_files ; do
101 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
317df3b5 102 if [ -n "${verbose}" ] ; then
15c16493 103 echo Keeping tic80 stuff in $i
317df3b5
AC
104 fi
105 fi
106 done
107else
15c16493
AC
108 for i in $tic80_files ; do
109 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
317df3b5 110 if [ -n "${verbose}" ] ; then
15c16493 111 echo Removing traces of \"tic80\" from $i...
317df3b5
AC
112 fi
113 cp $i new
15c16493
AC
114 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
115 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
116 if [ -n "${verbose}" ] ; then
117 echo Caching $i in .Recover...
118 fi
119 mv $i .Recover
120 fi
121 mv new $i
122 fi
123 done
124fi
125
126v850_files="configure configure.in ChangeLog"
27161f9e
NC
127if ( echo $* | grep keep\-v850e > /dev/null ) ; then
128 for i in $v850_files ; do
129 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
130 if [ -n "${verbose}" ] ; then
131 echo Keeping v850e stuff in $i
132 fi
133 fi
134 done
135else
136 for i in $v850_files ; do
137 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
138 if [ -n "${verbose}" ] ; then
139 echo Removing traces of \"v850e\" from $i...
140 fi
141 cp $i new
142 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
143 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
144 if [ -n "${verbose}" ] ; then
145 echo Caching $i in .Recover...
146 fi
147 mv $i .Recover
148 fi
149 mv new $i
150 fi
151 done
152fi
27161f9e 153
317df3b5 154
745a0437
MH
155for i in * ; do
156 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
157 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
158 fi
159done
160
b0c9f026 161# End of file.
This page took 0.171797 seconds and 4 git commands to generate.