start-sanitize-d10v
[deliverable/binutils-gdb.git] / opcodes / .Sanitize
CommitLineData
67c2d8c8 1# .Sanitize for devo/opcodes.
a4ccc310 2
e7c4e61c 3# Each directory to survive its way into a release will need a file
a4ccc310
SC
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
10f1b597 14# done in this directory.
a4ccc310
SC
15
16Do-first:
17
8515dbe2
DE
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
e3659cbf
MH
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
a4ccc310
SC
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:
87756e15 41
a4ccc310 42ChangeLog
add1fb05 43Makefile.in
9b65d522 44aclocal.m4
5f8f6d56 45alpha-dis.c
96926bf0 46alpha-opc.c
ba08215a
KR
47arm-dis.c
48arm-opc.h
720b3aed 49a29k-dis.c
50982f7f
KR
50config.in
51configure
fc984fdb 52configure.bat
add1fb05 53configure.in
117733ad 54dis-buf.c
204c9148 55disassemble.c
3b4cc5ec 56h8300-dis.c
337110ea
SC
57h8500-dis.c
58h8500-opc.h
cfa8d061 59hppa-dis.c
c840244e 60i386-dis.c
720b3aed 61i960-dis.c
c840244e 62m68k-dis.c
85093dca 63m68k-opc.c
a4c01299 64m88k-dis.c
03496c49 65makefile.vms
bf1dd2fd 66mips-dis.c
69135a69 67mips-opc.c
7a4f107d 68mpw-config.in
077bd46a 69mpw-make.sed
2a097d73 70ns32k-dis.c
89221bd5
ILT
71ppc-dis.c
72ppc-opc.c
8679a71f
SC
73sh-opc.h
74sh-dis.c
117733ad 75sparc-dis.c
c3a1191a 76sparc-opc.c
50982f7f 77sysdep.h
9f744f91
SC
78w65-dis.c
79w65-opc.h
add1fb05 80z8k-dis.c
a4ccc310 81z8k-opc.h
ea2598e4 82z8kgen.c
add1fb05 83
87756e15
RP
84Things-to-lose:
85
62ba1060
SC
86Do-last:
87
50982f7f 88arc_files="ChangeLog Makefile.in configure.in configure disassemble.c"
8515dbe2
DE
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
e3659cbf
MH
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
5c680afd
MT
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
a4ccc310 150# End of file.
This page took 0.145981 seconds and 4 git commands to generate.