Add dv-mn103tim.c and dv-mn103ser.c
[platform/upstream/binutils.git] / sim / mn10300 / .Sanitize
1 # .Sanitize for devo/sim/mn10300.
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 am30_files="dv-mn103cpu.c dv-mn103int.c dv-mn103tim.c dv-mn103ser.c"
19 if ( echo $* | grep keep\-am30 > /dev/null ) ; then
20         keep_these_too="${am30_files} ${keep_these_too}"
21 else
22         lose_these_too="${am30_files} ${lose_these_too}"
23 fi
24
25 # All files listed between the "Things-to-keep:" line and the
26 # "Files-to-sed:" line will be kept.  All other files will be removed.
27 # Directories listed in this section will have their own Sanitize
28 # called.  Directories not listed will be removed in their entirety
29 # with rm -rf.
30
31 Things-to-keep:
32
33 ChangeLog
34 Makefile.in
35 acconfig.h
36 config.in
37 configure
38 configure.in
39 mn10300_sim.h
40 gencode.c
41 interp.c
42 simops.c
43 mn10300.igen
44 mn10300.dc
45 sim-main.h
46 sim-main.c
47 op_utils.c
48
49 Things-to-lose:
50
51 Do-last:
52
53 am30_files="ChangeLog interp.c configure configure.in"
54 if ( echo $* | grep keep\-am30 > /dev/null ) ; then
55         for i in $am30_files ; do
56                 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
57                         if [ -n "${verbose}" ] ; then
58                                 echo Keeping am30 stuff in $i
59                         fi
60                 fi
61         done
62 else
63         for i in $am30_files ; do
64                 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
65                         if [ -n "${verbose}" ] ; then
66                                 echo Removing traces of \"am30\" from $i...
67                         fi
68                         cp $i new
69                         sed '/start\-sanitize\-am30/,/end-\sanitize\-am30/d' < $i > new
70                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
71                                 if [ -n "${verbose}" ] ; then
72                                         echo Caching $i in .Recover...
73                                 fi
74                                 mv $i .Recover
75                         fi
76                         mv new $i
77                 fi
78         done
79 fi
80
81 # End of file.