0c94ff7f812f833ce05741aea11e6ca4ba600fc1
[deliverable/binutils-gdb.git] / gdb / config / h8300 / .Sanitize
1 # .Sanitize for devo/gdb/config/h8300.
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
16 Do-first:
17
18 h8s_files="tm-h8300.h"
19 if ( echo $* | grep keep\-h8s > /dev/null ) ; then
20 for i in $h8s_files ; do
21 if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
22 if [ -n "${verbose}" ] ; then
23 echo Keeping h8s stuff in $i
24 fi
25 fi
26 done
27 else
28 for i in $h8s_files ; do
29 if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
30 if [ -n "${verbose}" ] ; then
31 echo Removing traces of \"h8s\" from $i...
32 fi
33 cp $i new
34 sed '/start\-sanitize\-h8s/,/end-\sanitize\-h8s/d' < $i > new
35 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
36 if [ -n "${verbose}" ] ; then
37 echo Caching $i in .Recover...
38 fi
39 mv $i .Recover
40 fi
41 mv new $i
42 fi
43 done
44 fi
45 # All files listed between the "Things-to-keep:" line and the
46 # "Files-to-sed:" line will be kept. All other files will be removed.
47 # Directories listed in this section will have their own Sanitize
48 # called. Directories not listed will be removed in their entirety
49 # with rm -rf.
50
51 Things-to-keep:
52
53 h8300.mt
54 tm-h8300.h
55
56 Things-to-lose:
57
58
59 Do-last:
60
61 # End of file.
This page took 0.030113 seconds and 3 git commands to generate.