Remove v850e sanitization
[deliverable/binutils-gdb.git] / gas / doc / .Sanitize
CommitLineData
e33bfde7 1# .Sanitize for devo/gas/doc
0c5e345c 2
e33bfde7 3# Each directory to survive its way into a release will need a file
0c5e345c
RP
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
e33bfde7 14# done in this directory.
0c5e345c
RP
15
16Do-first:
17
18# All files listed between the "Things-to-keep:" line and the
e33bfde7 19# "Do-last:" line will be kept. All other files will be removed.
0c5e345c
RP
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
24Things-to-keep:
25
29e28dd6 26Makefile.am
b0c02418 27Makefile.in
730ad1a7 28all.texi
0c5e345c 29as.1
0c5e345c 30as.texinfo
db8e56dc 31c-a29k.texi
902f6515 32c-arm.texi
8a683c67 33c-d10v.texi
cc88a106 34c-d30v.texi
db8e56dc
KR
35c-h8300.texi
36c-h8500.texi
37c-hppa.texi
38c-i386.texi
39c-i960.texi
3b70a885 40c-m32r.texi
db8e56dc
KR
41c-m68k.texi
42c-mips.texi
4d2ba393 43c-ns32k.texi
db8e56dc
KR
44c-sh.texi
45c-sparc.texi
ae6ecba5 46c-v850.texi
db8e56dc
KR
47c-vax.texi
48c-z8k.texi
24b9a4e2 49gasp.texi
4f6a1ad1 50h8.texi
01f8d309 51internals.texi
0c5e345c 52
87756e15
RP
53Things-to-lose:
54
e33bfde7
ILT
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
0c5e345c
RP
61Do-last:
62
085e370b 63m32rx_files="c-m32r.texi as.texinfo"
d745e6d9
NC
64if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
65 for i in $m32rx_files ; do
66 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
67 if [ -n "${verbose}" ] ; then
68 echo Keeping m32rx stuff in $i
69 fi
70 fi
71 done
72else
73 for i in $m32rx_files ; do
74 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
75 if [ -n "${verbose}" ] ; then
76 echo Removing traces of \"m32rx\" from $i...
77 fi
78 cp $i new
79 sed '/start\-sanitize\-m32rx/,/end-\sanitize\-m32rx/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
89fi
90
3fb52301
DE
91for i in * ; do
92 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
93 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
94 fi
95done
96
e33bfde7 97# eof
This page took 0.243948 seconds and 4 git commands to generate.