* compile.c (sim_load): Treat the H8/S like the H8/300H for now.
[deliverable/binutils-gdb.git] / sim / h8300 / .Sanitize
CommitLineData
a154eea7
SC
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
18Do-first:
19
88ea21e5
JL
20h8s_files="ChangeLog compile.c run.c"
21if ( 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
29else
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
46fi
a154eea7
SC
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
53Things-to-keep:
54
55ChangeLog
56Makefile.in
0743b4ac 57config.in
1ffd292b 58configure
a154eea7 59configure.in
7ecaa5af 60compile.c
56fc3774 61writecode.c
a154eea7 62run.c
7ecaa5af 63inst.h
a154eea7 64
87756e15
RP
65Things-to-lose:
66
775d4a40 67
a154eea7
SC
68Do-last:
69
a154eea7 70# End of file.
This page took 0.128537 seconds and 4 git commands to generate.