Add sim-main.c to things to keep.
[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"
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 config.in
36 configure
37 configure.in
38 mn10300_sim.h
39 gencode.c
40 interp.c
41 simops.c
42 mn10300.igen
43 mn10300.dc
44 sim-main.h
45 sim-main.c
46 op_utils.c
47
48 Things-to-lose:
49
50 Do-last:
51
52 am30_files="ChangeLog interp.c configure configure.in"
53 if ( echo $* | grep keep\-am30 > /dev/null ) ; then
54         for i in $am30_files ; do
55                 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
56                         if [ -n "${verbose}" ] ; then
57                                 echo Keeping am30 stuff in $i
58                         fi
59                 fi
60         done
61 else
62         for i in $am30_files ; do
63                 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
64                         if [ -n "${verbose}" ] ; then
65                                 echo Removing traces of \"am30\" from $i...
66                         fi
67                         cp $i new
68                         sed '/start\-sanitize\-am30/,/end-\sanitize\-am30/d' < $i > new
69                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
70                                 if [ -n "${verbose}" ] ; then
71                                         echo Caching $i in .Recover...
72                                 fi
73                                 mv $i .Recover
74                         fi
75                         mv new $i
76                 fi
77         done
78 fi
79
80 # End of file.