]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/testsuite/gas/mn10300/.Sanitize
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / mn10300 / .Sanitize
CommitLineData
7d666962
JL
1# Sanitize.in for devo.
2# $Id$
3#
4
5# Each directory to survive it's way into a release will need a file
6# like this one called "./.Sanitize". All keyword lines must exist,
7# and must exist in the order specified by this file. Each directory
8# in the tree will be processed, top down, in the following order.
9
10# Hash started lines like this one are comments and will be deleted
11# before anything else is done. Blank lines will also be squashed
12# out.
13
14# The lines between the "Do-first:" line and the "Things-to-keep:"
15# line are executed as a /bin/sh shell script before anything else is
16# done in this
17
18Do-first:
19
9e58f7c1 20cygnus_files="am33.s am33_2.s am33_3.s am33_4.s am33_5.s am33_6.s am33_7.s am33_8.s"
a2d41a25 21
9e58f7c1
JL
22if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
23 keep_these_too="${cygnus_files} ${keep_these_too}"
a2d41a25 24else
9e58f7c1 25 lose_these_too="${cygnus_files} ${lose_these_too}"
a2d41a25
JL
26fi
27
7d666962
JL
28# All files listed between the "Things-to-keep:" line and the
29# "Files-to-sed:" line will be kept. All other files will be removed.
30# Directories listed in this section will have their own Sanitize
31# called. Directories not listed will be removed in their entirety
32# with rm -rf.
33
34Things-to-keep:
c3fa8cd6
JL
35add.s
36basic.exp
37bcc.s
38bit.s
39cmp.s
40ext.s
41extend.s
42logical.s
43loop.s
44mov1.s
45mov2.s
46mov3.s
47mov4.s
48movbu.s
49movhu.s
50movm.s
51muldiv.s
52other.s
53shift.s
54sub.s
c845aa02 55udf.s
7d666962
JL
56
57Things-to-lose:
58
59Do-last:
60
9e58f7c1
JL
61cygnus_files="basic.exp"
62if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
63 for i in $cygnus_files ; do
64 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
a2d41a25 65 if [ -n "${verbose}" ] ; then
9e58f7c1 66 echo Keeping cygnus stuff in $i
a2d41a25
JL
67 fi
68 fi
69 done
70else
9e58f7c1
JL
71 for i in $cygnus_files ; do
72 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
a2d41a25 73 if [ -n "${verbose}" ] ; then
9e58f7c1 74 echo Removing traces of \"cygnus\" from $i...
a2d41a25
JL
75 fi
76 cp $i new
9e58f7c1 77 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
a2d41a25
JL
78 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
79 if [ -n "${verbose}" ] ; then
80 echo Caching $i in .Recover...
81 fi
82 mv $i .Recover
83 fi
84 mv new $i
85 fi
86 done
87fi
88
7d666962 89# End of file.