Thu Dec 17 17:18:43 1998 Dave Brolley <brolley@cygnus.com>
[deliverable/binutils-gdb.git] / sim / testsuite / .Sanitize
CommitLineData
00729fe3
AC
1# .Sanitize for devo/sim/testsuite
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 18r5900_files="mips64r5900-elf"
7cf0d795
AC
19if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
20 keep_these_too="${r5900_files} ${keep_these_too}"
21else
22 lose_these_too="${r5900_files} ${lose_these_too}"
23fi
24
bd85beb9 25v850e_files="v850e-elf"
61c550e0 26if ( echo $* | grep keep\-v850e > /dev/null ) ; then
bd85beb9 27 keep_these_too="${v850e_files} ${keep_these_too}"
e1625ed2 28else
bd85beb9 29 lose_these_too="${v850e_files} ${lose_these_too}"
e1625ed2
FL
30fi
31
00729fe3
AC
32# All files listed between the "Things-to-keep:" line and the
33# "Files-to-sed:" line will be kept. All other files will be removed.
34# Directories listed in this section will have their own Sanitize
35# called. Directories not listed will be removed in their entirety
36# with rm -rf.
37
38Things-to-keep:
39
40ChangeLog
41Makefile.in
e9b53280 42common
761784f0 43config
00729fe3
AC
44configure
45configure.in
88770c1c 46d10v-elf
965f5327 47d30v-elf
761784f0 48lib
6dc224fb 49m32r-elf
2fee67ae 50mips64el-elf
761784f0 51sim
00729fe3
AC
52
53Things-to-lose:
54
3971886a 55tic80-coff
2bc779d7 56README
7ec396d2 57
00729fe3
AC
58Do-last:
59
7cf0d795
AC
60r5900_files="configure configure.in ChangeLog Makefile.in"
61if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
62 for i in $r5900_files ; do
63 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
64 if [ -n "${verbose}" ] ; then
65 echo Keeping r5900 stuff in $i
66 fi
67 fi
68 done
69else
70 for i in $r5900_files ; do
71 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
72 if [ -n "${verbose}" ] ; then
73 echo Removing traces of \"r5900\" from $i...
74 fi
75 cp $i new
76 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
77 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
78 if [ -n "${verbose}" ] ; then
79 echo Caching $i in .Recover...
80 fi
81 mv $i .Recover
82 fi
83 mv new $i
84 fi
85 done
86fi
87
559eba20
FCE
88sky_files="configure configure.in ChangeLog"
89if ( echo $* | grep keep\-sky > /dev/null ) ; then
90 for i in $sky_files ; do
91 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
92 if [ -n "${verbose}" ] ; then
93 echo Keeping sky stuff in $i
94 fi
95 fi
96 done
97else
98 for i in $sky_files ; do
99 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
100 if [ -n "${verbose}" ] ; then
101 echo Removing traces of \"sky\" from $i...
102 fi
103 cp $i new
104 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
105 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
106 if [ -n "${verbose}" ] ; then
107 echo Caching $i in .Recover...
108 fi
109 mv $i .Recover
110 fi
111 mv new $i
112 fi
113 done
114fi
115
bd85beb9
AC
116m32rx_files="configure configure.in ChangeLog"
117if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
118 for i in $m32rx_files ; do
119 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
120 if [ -n "${verbose}" ] ; then
121 echo Keeping m32rx stuff in $i
122 fi
123 fi
124 done
125else
126 for i in $m32rx_files ; do
127 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
128 if [ -n "${verbose}" ] ; then
129 echo Removing traces of \"m32rx\" from $i...
130 fi
131 cp $i new
132 sed '/start\-sanitize\-m32rx/,/end-\sanitize\-m32rx/d' < $i > new
133 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
134 if [ -n "${verbose}" ] ; then
135 echo Caching $i in .Recover...
136 fi
137 mv $i .Recover
138 fi
139 mv new $i
140 fi
141 done
142fi
143
00729fe3
AC
144for i in * ; do
145 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
146 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
147 fi
148done
149
150# End of file.
This page took 0.081995 seconds and 4 git commands to generate.