* gx prototype: simulator I/O bug fix
[deliverable/binutils-gdb.git] / sim / v850 / .Sanitize
CommitLineData
22c1c7dd
JL
1# .Sanitize for devo/sim/v850.
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
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.
23
24Things-to-keep:
25
26ChangeLog
27Makefile.in
5da9ce07 28acconfig.h
5f270267 29config.in
22c1c7dd
JL
30configure
31configure.in
32v850_sim.h
5d37a07b
AC
33v850.igen
34v850-dc
22c1c7dd
JL
35gencode.c
36interp.c
37simops.c
26364863 38sim-main.h
22c1c7dd
JL
39
40Things-to-lose:
41
42Do-last:
43
240dd45f 44v850e_files="interp.c simops.c v850.igen v850-dc ChangeLog sim-main.h"
658303f7 45if ( echo $* | grep keep\-v850e > /dev/null ) ; then
f7fcba7a 46 for i in $v850e_files ; do
658303f7 47 if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
f7fcba7a 48 if [ -n "${verbose}" ] ; then
658303f7 49 echo Keeping v850e stuff in $i
f7fcba7a
NC
50 fi
51 fi
52 done
53else
54 for i in $v850e_files ; do
658303f7 55 if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then
f7fcba7a 56 if [ -n "${verbose}" ] ; then
658303f7 57 echo Removing traces of \"v850e\" from $i...
f7fcba7a
NC
58 fi
59 cp $i new
658303f7 60 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
f7fcba7a
NC
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
70fi
71
22c1c7dd 72# End of file.
This page took 0.096057 seconds and 4 git commands to generate.