* compile.c (sim_load): Treat the H8/S like the H8/300H for now.
[deliverable/binutils-gdb.git] / sim / h8300 / .Sanitize
1 # Sanitize.in for devo.
2 # $Id$
3 #
4
5 # Each directory to survive it's way into a release will need a file
6 # like this one called "./.Sanitize". All keyword lines must exist,
7 # and must exist in the order specified by this file. Each directory
8 # in the tree will be processed, top down, in the following order.
9
10 # Hash started lines like this one are comments and will be deleted
11 # before anything else is done. Blank lines will also be squashed
12 # out.
13
14 # The lines between the "Do-first:" line and the "Things-to-keep:"
15 # line are executed as a /bin/sh shell script before anything else is
16 # done in this
17
18 Do-first:
19
20 h8s_files="ChangeLog compile.c run.c"
21 if ( echo $* | grep keep\-h8s > /dev/null ) ; then
22 for i in $h8s_files ; do
23 if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
24 if [ -n "${verbose}" ] ; then
25 echo Keeping h8s stuff in $i
26 fi
27 fi
28 done
29 else
30 for i in $h8s_files ; do
31 if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
32 if [ -n "${verbose}" ] ; then
33 echo Removing traces of \"h8s\" from $i...
34 fi
35 cp $i new
36 sed '/start\-sanitize\-h8s/,/end-\sanitize\-h8s/d' < $i > new
37 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
38 if [ -n "${verbose}" ] ; then
39 echo Caching $i in .Recover...
40 fi
41 mv $i .Recover
42 fi
43 mv new $i
44 fi
45 done
46 fi
47 # All files listed between the "Things-to-keep:" line and the
48 # "Files-to-sed:" line will be kept. All other files will be removed.
49 # Directories listed in this section will have their own Sanitize
50 # called. Directories not listed will be removed in their entirety
51 # with rm -rf.
52
53 Things-to-keep:
54
55 ChangeLog
56 Makefile.in
57 config.in
58 configure
59 configure.in
60 compile.c
61 writecode.c
62 run.c
63 inst.h
64
65 Things-to-lose:
66
67
68 Do-last:
69
70 # End of file.
This page took 0.036131 seconds and 5 git commands to generate.