No longer need to sanitize away h8s stuff.
[deliverable/binutils-gdb.git] / include / opcode / .Sanitize
1 # .Sanitize for devo/include/opcode.
2
3 # Each directory to survive it's 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
15
16 Do-first:
17
18 arc_files="arc.h"
19
20 if ( echo $* | grep keep\-arc > /dev/null ) ; then
21 keep_these_too="${arc_files} ${keep_these_too}"
22 else
23 lose_these_too="${arc_files} ${lose_these_too}"
24 fi
25
26
27 # All files listed between the "Things-to-keep:" line and the
28 # "Files-to-sed:" line will be kept. All other files will be removed.
29 # Directories listed in this section will have their own Sanitize
30 # called. Directories not listed will be removed in their entirety
31 # with rm -rf.
32
33 Things-to-keep:
34
35 ChangeLog
36 a29k.h
37 alpha.h
38 arm.h
39 convex.h
40 h8300.h
41 hppa.h
42 i386.h
43 i860.h
44 i960.h
45 m68k.h
46 m88k.h
47 mips.h
48 np1.h
49 ns32k.h
50 pn.h
51 ppc.h
52 pyr.h
53 sparc.h
54 tahoe.h
55 vax.h
56
57 Things-to-lose:
58
59 Do-last:
60
61 arc_files="ChangeLog"
62 if ( echo $* | grep keep\-arc > /dev/null ) ; then
63 for i in $arc_files ; do
64 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
65 if [ -n "${verbose}" ] ; then
66 echo Keeping arc stuff in $i
67 fi
68 fi
69 done
70 else
71 for i in $arc_files ; do
72 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
73 if [ -n "${verbose}" ] ; then
74 echo Removing traces of \"arc\" from $i...
75 fi
76 cp $i new
77 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
78 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
79 if [ -n "${verbose}" ] ; then
80 echo Caching $i in .Recover...
81 fi
82 mv $i .Recover
83 fi
84 mv new $i
85 fi
86 done
87 fi
88
89 for i in * ; do
90 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
91 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
92 fi
93 done
94
95 # End of file.
This page took 0.034818 seconds and 5 git commands to generate.