remove d30v sanitization
[deliverable/binutils-gdb.git] / gas / doc / .Sanitize
1 # .Sanitize for devo/gas/doc
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 # All files listed between the "Things-to-keep:" line and the
19 # "Do-last:" line will be kept. All other files will be removed.
20 # Directories listed in this section will have their own Sanitize
21 # called. Directories not listed will be removed in their entirety
22 # with rm -rf.
23
24 Things-to-keep:
25
26 Makefile.am
27 Makefile.in
28 all.texi
29 as.1
30 as.texinfo
31 c-a29k.texi
32 c-arm.texi
33 c-d10v.texi
34 c-d30v.texi
35 c-h8300.texi
36 c-h8500.texi
37 c-hppa.texi
38 c-i386.texi
39 c-i960.texi
40 c-m32r.texi
41 c-m68k.texi
42 c-mips.texi
43 c-ns32k.texi
44 c-sh.texi
45 c-sparc.texi
46 c-v850.texi
47 c-vax.texi
48 c-z8k.texi
49 gasp.texi
50 h8.texi
51 internals.texi
52
53 Things-to-lose:
54
55
56
57 # The lines between the "Do-last:" line and the end of the file
58 # are executed as a /bin/sh shell script after everything else is
59 # done.
60
61 Do-last:
62
63 v850e_files="c-v850.texi"
64 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
65 for i in $v850e_files ; do
66 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
67 if [ -n "${verbose}" ] ; then
68 echo Keeping v850e stuff in $i
69 fi
70 fi
71 done
72 else
73 for i in $v850e_files ; do
74 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
75 if [ -n "${verbose}" ] ; then
76 echo Removing traces of \"v850e\" from $i...
77 fi
78 cp $i new
79 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
80 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
81 if [ -n "${verbose}" ] ; then
82 echo Caching $i in .Recover...
83 fi
84 mv $i .Recover
85 fi
86 mv new $i
87 fi
88 done
89 fi
90
91 m32rx_files="c-m32r.texi as.texinfo"
92 if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
93 for i in $m32rx_files ; do
94 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
95 if [ -n "${verbose}" ] ; then
96 echo Keeping m32rx stuff in $i
97 fi
98 fi
99 done
100 else
101 for i in $m32rx_files ; do
102 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
103 if [ -n "${verbose}" ] ; then
104 echo Removing traces of \"m32rx\" from $i...
105 fi
106 cp $i new
107 sed '/start\-sanitize\-m32rx/,/end-\sanitize\-m32rx/d' < $i > new
108 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
109 if [ -n "${verbose}" ] ; then
110 echo Caching $i in .Recover...
111 fi
112 mv $i .Recover
113 fi
114 mv new $i
115 fi
116 done
117 fi
118
119 for i in * ; do
120 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
121 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
122 fi
123 done
124
125 # eof
This page took 0.036145 seconds and 4 git commands to generate.