* ld-scripts/script.t: Put .pr in .text, and .rw in .data, for
[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 i960xl_files="ChangeLog i960.h"
62 if ( echo $* | grep keep\-i960xl > /dev/null ) ; then
63 if [ -n "${verbose}" ] ; then
64 echo Keeping i960xl stuff in $i960xl_files.
65 fi
66 else
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
80 fi
81
82 arc_files="ChangeLog"
83 if ( 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
91 else
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
108 fi
109
110 for 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
114 done
115
116 # End of file.
This page took 0.042401 seconds and 4 git commands to generate.