* sparc.h (enum sparc_architecture): Add v9a.
[deliverable/binutils-gdb.git] / include / opcode / .Sanitize
CommitLineData
30989ea5 1# .Sanitize for devo/include/opcode.
1ee1fd7e
SC
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
16Do-first:
17
30989ea5
DE
18arc_files="arc.h"
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
26
1ee1fd7e
SC
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
33Things-to-keep:
34
35ChangeLog
36a29k.h
37arm.h
21d9662b 38convex.h
1ee1fd7e 39h8300.h
76b731f9 40hppa.h
1ee1fd7e
SC
41i386.h
42i860.h
43i960.h
44m68k.h
45m88k.h
46mips.h
47np1.h
48ns32k.h
49pn.h
a8146de4 50ppc.h
1ee1fd7e 51pyr.h
3ab074bc 52rs6k.h
1ee1fd7e
SC
53sparc.h
54tahoe.h
55vax.h
56
87756e15
RP
57Things-to-lose:
58
1ee1fd7e
SC
59Do-last:
60
c5b34aee
KR
61i960xl_files="ChangeLog i960.h"
62if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
63 if [ -n "${verbose}" ] ; then
64 echo Keeping i960xl stuff in $i960xl_files.
65 fi
66else
67 if [ -n "${verbose}" ]; then
68 echo -n Cleaning i960xl in `pwd`:
69 fi
70 for f in $i960xl_files ; do
71 if [ -n "${verbose}" ] ; then
72 echo -n " " $f
73 fi
74 sed -e '/start\-sanitize\-i960xl/,/end\-sanitize\-i960xl/d' -e '/XL/d' < $f > new
75 if [ -n "${safe}" ] ; then
76 mv $f .Recover
77 fi
78 mv new $f
79 done
80fi
81
30989ea5
DE
82arc_files="ChangeLog"
83if ( echo $* | grep keep\-arc > /dev/null ) ; then
84 for i in $arc_files ; do
85 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
86 if [ -n "${verbose}" ] ; then
87 echo Keeping arc stuff in $i
88 fi
89 fi
90 done
91else
92 for i in $arc_files ; do
93 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
94 if [ -n "${verbose}" ] ; then
95 echo Removing traces of \"arc\" from $i...
96 fi
97 cp $i new
98 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
99 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
100 if [ -n "${verbose}" ] ; then
101 echo Caching $i in .Recover...
102 fi
103 mv $i .Recover
104 fi
105 mv new $i
106 fi
107 done
108fi
109
110for i in * ; do
111 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
112 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
113 fi
114done
115
1ee1fd7e 116# End of file.
This page took 0.136742 seconds and 4 git commands to generate.