start-sanitize-d10v
[deliverable/binutils-gdb.git] / opcodes / .Sanitize
1 # .Sanitize for devo/opcodes.
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 arc_files="arc-dis.c arc-opc.c"
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 d10v_files="d10v-dis.c d10v-opc.c"
27
28 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
29 keep_these_too="${d10v_files} ${keep_these_too}"
30 else
31 lose_these_too="${d10v_files} ${lose_these_too}"
32 fi
33
34 # All files listed between the "Things-to-keep:" line and the
35 # "Files-to-sed:" line will be kept. All other files will be removed.
36 # Directories listed in this section will have their own Sanitize
37 # called. Directories not listed will be removed in their entirety
38 # with rm -rf.
39
40 Things-to-keep:
41
42 ChangeLog
43 Makefile.in
44 aclocal.m4
45 alpha-dis.c
46 alpha-opc.c
47 arm-dis.c
48 arm-opc.h
49 a29k-dis.c
50 config.in
51 configure
52 configure.bat
53 configure.in
54 dis-buf.c
55 disassemble.c
56 h8300-dis.c
57 h8500-dis.c
58 h8500-opc.h
59 hppa-dis.c
60 i386-dis.c
61 i960-dis.c
62 m68k-dis.c
63 m68k-opc.c
64 m88k-dis.c
65 makefile.vms
66 mips-dis.c
67 mips-opc.c
68 mpw-config.in
69 mpw-make.sed
70 ns32k-dis.c
71 ppc-dis.c
72 ppc-opc.c
73 sh-opc.h
74 sh-dis.c
75 sparc-dis.c
76 sparc-opc.c
77 sysdep.h
78 w65-dis.c
79 w65-opc.h
80 z8k-dis.c
81 z8k-opc.h
82 z8kgen.c
83
84 Things-to-lose:
85
86 Do-last:
87
88 arc_files="ChangeLog Makefile.in configure.in configure disassemble.c"
89 if ( echo $* | grep keep\-arc > /dev/null ) ; then
90 for i in $arc_files ; do
91 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
92 if [ -n "${verbose}" ] ; then
93 echo Keeping arc stuff in $i
94 fi
95 fi
96 done
97 else
98 for i in $arc_files ; do
99 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
100 if [ -n "${verbose}" ] ; then
101 echo Removing traces of \"arc\" from $i...
102 fi
103 cp $i new
104 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
105 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
106 if [ -n "${verbose}" ] ; then
107 echo Caching $i in .Recover...
108 fi
109 mv $i .Recover
110 fi
111 mv new $i
112 fi
113 done
114 fi
115
116 d10v_files="ChangeLog Makefile.in configure.in configure disassemble.c"
117 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
118 for i in $d10v_files ; do
119 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
120 if [ -n "${verbose}" ] ; then
121 echo Keeping d10v stuff in $i
122 fi
123 fi
124 done
125 else
126 for i in $d10v_files ; do
127 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
128 if [ -n "${verbose}" ] ; then
129 echo Removing traces of \"d10v\" from $i...
130 fi
131 cp $i new
132 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
133 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
134 if [ -n "${verbose}" ] ; then
135 echo Caching $i in .Recover...
136 fi
137 mv $i .Recover
138 fi
139 mv new $i
140 fi
141 done
142 fi
143
144 for i in * ; do
145 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
146 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
147 fi
148 done
149
150 # End of file.
This page took 0.04263 seconds and 4 git commands to generate.