DisplayDWARF2 basic type encodings.
[deliverable/binutils-gdb.git] / sim / mn10300 / .Sanitize
CommitLineData
05ccbdfd
JL
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
16Do-first:
17
1ec21625
JL
18cygnus_files="am33.igen"
19if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
20 keep_these_too="${cygnus_files} ${keep_these_too}"
0f7d7385 21else
1ec21625 22 lose_these_too="${cygnus_files} ${lose_these_too}"
0f7d7385
JL
23fi
24
6d133cc9 25
05ccbdfd
JL
26# All files listed between the "Things-to-keep:" line and the
27# "Files-to-sed:" line will be kept. All other files will be removed.
28# Directories listed in this section will have their own Sanitize
29# called. Directories not listed will be removed in their entirety
30# with rm -rf.
31
32Things-to-keep:
33
34ChangeLog
35Makefile.in
5da9ce07 36acconfig.h
05ccbdfd
JL
37config.in
38configure
39configure.in
0e854a20
FCE
40dv-mn103cpu.c
41dv-mn103int.c
42dv-mn103tim.c
43dv-mn103ser.c
44dv-mn103iop.c
05ccbdfd
JL
45mn10300_sim.h
46gencode.c
47interp.c
48simops.c
8dcf23d2
JJ
49mn10300.igen
50mn10300.dc
51sim-main.h
5569ab1b 52sim-main.c
8dcf23d2 53op_utils.c
9b27cf7b 54tconfig.in
05ccbdfd
JL
55
56Things-to-lose:
57
58Do-last:
59
1ec21625
JL
60cygnus_files="ChangeLog mn10300_sim.h mn10300.igen Makefile.in"
61if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
62 for i in $cygnus_files ; do
63 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
a6cbaa65
JL
64 if [ -n "${verbose}" ] ; then
65 echo Keeping am33 stuff in $i
66 fi
67 fi
68 done
69else
1ec21625
JL
70 for i in $cygnus_files ; do
71 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
a6cbaa65
JL
72 if [ -n "${verbose}" ] ; then
73 echo Removing traces of \"am33\" from $i...
74 fi
75 cp $i new
1ec21625 76 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
a6cbaa65
JL
77 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
78 if [ -n "${verbose}" ] ; then
79 echo Caching $i in .Recover...
80 fi
81 mv $i .Recover
82 fi
83 mv new $i
84 fi
85 done
86fi
87
05ccbdfd 88# End of file.
This page took 0.093607 seconds and 4 git commands to generate.