Added support for v850e and v850eq instructions.
[deliverable/binutils-gdb.git] / sim / v850 / .Sanitize
1 # .Sanitize for devo/sim/v850.
2
3 # Each directory to survive its 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
16 Do-first:
17
18 # All files listed between the "Things-to-keep:" line and the
19 # "Files-to-sed:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
22 # with rm -rf.
23
24 Things-to-keep:
25
26 ChangeLog
27 Makefile.in
28 config.in
29 configure
30 configure.in
31 v850_sim.h
32 gencode.c
33 interp.c
34 simops.c
35
36 Things-to-lose:
37
38 Do-last:
39
40 v850e_files="interp.c simops.c v850_sim.h"
41 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
42 for i in $v850e_files ; do
43 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
44 if [ -n "${verbose}" ] ; then
45 echo Keeping v850e stuff in $i
46 fi
47 fi
48 done
49 else
50 for i in $v850e_files ; do
51 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
52 if [ -n "${verbose}" ] ; then
53 echo Removing traces of \"v850e\" from $i...
54 fi
55 cp $i new
56 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
57 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
58 if [ -n "${verbose}" ] ; then
59 echo Caching $i in .Recover...
60 fi
61 mv $i .Recover
62 fi
63 mv new $i
64 fi
65 done
66 fi
67 if ( echo $* | grep keep\-v850eq > /dev/null ) ; then
68 for i in $v850e_files ; do
69 if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
70 if [ -n "${verbose}" ] ; then
71 echo Keeping v850eq stuff in $i
72 fi
73 fi
74 done
75 else
76 for i in $v850e_files ; do
77 if test ! -d $i && (grep sanitize-v850eq $i > /dev/null) ; then
78 if [ -n "${verbose}" ] ; then
79 echo Removing traces of \"v850eq\" from $i...
80 fi
81 cp $i new
82 sed '/start\-sanitize\-v850eq/,/end-\sanitize\-v850eq/d' < $i > new
83 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
84 if [ -n "${verbose}" ] ; then
85 echo Caching $i in .Recover...
86 fi
87 mv $i .Recover
88 fi
89 mv new $i
90 fi
91 done
92 fi
93
94 # End of file.
This page took 0.032061 seconds and 5 git commands to generate.