Add sanitize-am30 markers. Keep details of AM30 implementation of
[deliverable/binutils-gdb.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 op_utils.c
46
47 Things-to-lose:
48
49 Do-last:
50
51 am30_files="ChangeLog interp.c configure configure.in"
52 if ( echo $* | grep keep\-am30 > /dev/null ) ; then
53 for i in $am30_files ; do
54 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
55 if [ -n "${verbose}" ] ; then
56 echo Keeping am30 stuff in $i
57 fi
58 fi
59 done
60 else
61 for i in $am30_files ; do
62 if test ! -d $i && (grep sanitize-am30 $i > /dev/null) ; then
63 if [ -n "${verbose}" ] ; then
64 echo Removing traces of \"am30\" from $i...
65 fi
66 cp $i new
67 sed '/start\-sanitize\-am30/,/end-\sanitize\-am30/d' < $i > new
68 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
69 if [ -n "${verbose}" ] ; then
70 echo Caching $i in .Recover...
71 fi
72 mv $i .Recover
73 fi
74 mv new $i
75 fi
76 done
77 fi
78
79 # End of file.
This page took 0.03155 seconds and 4 git commands to generate.