* h8300.h: Reorder various #defines for readability.
[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 arm.h
38 convex.h
39 h8300.h
40 hppa.h
41 i386.h
42 i860.h
43 i960.h
44 m68k.h
45 m88k.h
46 mips.h
47 np1.h
48 ns32k.h
49 pn.h
50 ppc.h
51 pyr.h
52 rs6k.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 h8s_files="ChangeLog h8300.h"
90 if ( echo $* | grep keep\-h8s > /dev/null ) ; then
91 for i in $h8s_files ; do
92 if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
93 if [ -n "${verbose}" ] ; then
94 echo Keeping h8s stuff in $i
95 fi
96 fi
97 done
98 else
99 for i in $h8s_files ; do
100 if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
101 if [ -n "${verbose}" ] ; then
102 echo Removing traces of \"h8s\" from $i...
103 fi
104 cp $i new
105 sed '/start\-sanitize\-h8s/,/end-\sanitize\-h8s/d' < $i > new
106 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
107 if [ -n "${verbose}" ] ; then
108 echo Caching $i in .Recover...
109 fi
110 mv $i .Recover
111 fi
112 mv new $i
113 fi
114 done
115 fi
116 for i in * ; do
117 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
118 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
119 fi
120 done
121
122 # End of file.
This page took 0.034211 seconds and 4 git commands to generate.