start-sanitize-d10v
[deliverable/binutils-gdb.git] / opcodes / .Sanitize
... / ...
CommitLineData
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
16Do-first:
17
18arc_files="arc-dis.c arc-opc.c"
19
20if ( echo $* | grep keep\-arc > /dev/null ) ; then
21 keep_these_too="${arc_files} ${keep_these_too}"
22else
23 lose_these_too="${arc_files} ${lose_these_too}"
24fi
25
26d10v_files="d10v-dis.c d10v-opc.c"
27
28if ( echo $* | grep keep\-d10v > /dev/null ) ; then
29 keep_these_too="${d10v_files} ${keep_these_too}"
30else
31 lose_these_too="${d10v_files} ${lose_these_too}"
32fi
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
40Things-to-keep:
41
42ChangeLog
43Makefile.in
44aclocal.m4
45alpha-dis.c
46alpha-opc.c
47arm-dis.c
48arm-opc.h
49a29k-dis.c
50config.in
51configure
52configure.bat
53configure.in
54dis-buf.c
55disassemble.c
56h8300-dis.c
57h8500-dis.c
58h8500-opc.h
59hppa-dis.c
60i386-dis.c
61i960-dis.c
62m68k-dis.c
63m68k-opc.c
64m88k-dis.c
65makefile.vms
66mips-dis.c
67mips-opc.c
68mpw-config.in
69mpw-make.sed
70ns32k-dis.c
71ppc-dis.c
72ppc-opc.c
73sh-opc.h
74sh-dis.c
75sparc-dis.c
76sparc-opc.c
77sysdep.h
78w65-dis.c
79w65-opc.h
80z8k-dis.c
81z8k-opc.h
82z8kgen.c
83
84Things-to-lose:
85
86Do-last:
87
88arc_files="ChangeLog Makefile.in configure.in configure disassemble.c"
89if ( 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
97else
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
114fi
115
116d10v_files="ChangeLog Makefile.in configure.in configure disassemble.c"
117if ( 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
125else
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
142fi
143
144for 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
148done
149
150# End of file.
This page took 0.023073 seconds and 4 git commands to generate.