* gx sim prototype tweaks
[binutils-gdb.git] / sim / v850 / .Sanitize
blobcf0debba2d583f93e7ff66b9c16a4683bc81b162
1 # .Sanitize for devo/sim/v850.
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.
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.
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.
16 Do-first:
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.
24 Things-to-keep:
26 ChangeLog
27 Makefile.in
28 acconfig.h
29 config.in
30 configure
31 configure.in
32 v850_sim.h
33 v850.igen
34 v850-dc
35 gencode.c
36 interp.c
37 simops.c
38 sim-main.h
40 Things-to-lose:
42 Do-last:
44 v850e_files="interp.c simops.c v850.igen v850-dc ChangeLog sim-main.h"
45 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
46         for i in $v850e_files ; do
47                 if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
48                         if [ -n "${verbose}" ] ; then
49                                 echo Keeping v850e stuff in $i
50                         fi
51                 fi
52         done
53 else
54         for i in $v850e_files ; do
55                 if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
56                         if [ -n "${verbose}" ] ; then
57                                 echo Removing traces of \"v850e\" from $i...
58                         fi
59                         cp $i new
60                         sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
61                         if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
62                                 if [ -n "${verbose}" ] ; then
63                                         echo Caching $i in .Recover...
64                                 fi
65                                 mv $i .Recover
66                         fi
67                         mv new $i
68                 fi
69         done
72 # End of file.