New directory, devo/sim/testsuite - loose (sanitize) it for the moment.
[deliverable/binutils-gdb.git] / sim / .Sanitize
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
16 Do-first:
17
18 m32r_files="m32r"
19 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
20 keep_these_too="${m32r_files} ${keep_these_too}"
21 else
22 lose_these_too="${m32r_files} ${lose_these_too}"
23 fi
24
25 v850_files="v850"
26 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
27 keep_these_too="${v850_files} ${keep_these_too}"
28 else
29 lose_these_too="${v850_files} ${lose_these_too}"
30 fi
31
32 d30v_files="d30v igen"
33 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
34 keep_these_too="${d30v_files} ${keep_these_too}"
35 else
36 lose_these_too="${d30v_files} ${lose_these_too}"
37 fi
38
39 # All files listed between the "Things-to-keep:" line and the
40 # "Files-to-sed:" line will be kept. All other files will be removed.
41 # Directories listed in this section will have their own Sanitize
42 # called. Directories not listed will be removed in their entirety
43 # with rm -rf.
44
45 Things-to-keep:
46
47 ChangeLog
48 Makefile.in
49 README-HACKING
50 arm
51 configure
52 configure.in
53 common
54 d10v
55 erc32
56 h8300
57 h8500
58 mips
59 mn10200
60 mn10300
61 ppc
62 sh
63 w65
64 z8k
65
66 Things-to-lose:
67
68 testsuite
69
70 Do-last:
71
72 m32r_files="configure configure.in ChangeLog"
73 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
74 for i in $m32r_files ; do
75 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
76 if [ -n "${verbose}" ] ; then
77 echo Keeping m32r stuff in $i
78 fi
79 fi
80 done
81 else
82 for i in $m32r_files ; do
83 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
84 if [ -n "${verbose}" ] ; then
85 echo Removing traces of \"m32r\" from $i...
86 fi
87 cp $i new
88 sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
89 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
90 if [ -n "${verbose}" ] ; then
91 echo Caching $i in .Recover...
92 fi
93 mv $i .Recover
94 fi
95 mv new $i
96 fi
97 done
98 fi
99
100 v850_files="configure configure.in ChangeLog"
101 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
102 for i in $v850_files ; do
103 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
104 if [ -n "${verbose}" ] ; then
105 echo Keeping v850 stuff in $i
106 fi
107 fi
108 done
109 else
110 for i in $v850_files ; do
111 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
112 if [ -n "${verbose}" ] ; then
113 echo Removing traces of \"v850\" from $i...
114 fi
115 cp $i new
116 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
117 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
118 if [ -n "${verbose}" ] ; then
119 echo Caching $i in .Recover...
120 fi
121 mv $i .Recover
122 fi
123 mv new $i
124 fi
125 done
126 fi
127
128 d30v_files="configure configure.in ChangeLog"
129 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
130 for i in $d30v_files ; do
131 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
132 if [ -n "${verbose}" ] ; then
133 echo Keeping d30v stuff in $i
134 fi
135 fi
136 done
137 else
138 for i in $d30v_files ; do
139 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
140 if [ -n "${verbose}" ] ; then
141 echo Removing traces of \"d30v\" from $i...
142 fi
143 cp $i new
144 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
145 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
146 if [ -n "${verbose}" ] ; then
147 echo Caching $i in .Recover...
148 fi
149 mv $i .Recover
150 fi
151 mv new $i
152 fi
153 done
154 fi
155
156 for i in * ; do
157 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
158 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
159 fi
160 done
161
162 # End of file.
This page took 0.050743 seconds and 4 git commands to generate.