Added m32rx sanitization.
[deliverable/binutils-gdb.git] / gas / doc / .Sanitize
CommitLineData
0c5e345c 1# Sanitize.in for devo.
0c5e345c
RP
2#
3
4# Each directory to survive it's way into a release will need a file
5# like this one called "./.Sanitize". All keyword lines must exist,
6# and must exist in the order specified by this file. Each directory
7# in the tree will be processed, top down, in the following order.
8
9# Hash started lines like this one are comments and will be deleted
10# before anything else is done. Blank lines will also be squashed
11# out.
12
13# The lines between the "Do-first:" line and the "Things-to-keep:"
14# line are executed as a /bin/sh shell script before anything else is
15# done in this
16
17Do-first:
18
19# All files listed between the "Things-to-keep:" line and the
20# "Files-to-sed:" line will be kept. All other files will be removed.
21# Directories listed in this section will have their own Sanitize
22# called. Directories not listed will be removed in their entirety
23# with rm -rf.
24
25Things-to-keep:
26
29e28dd6 27Makefile.am
b0c02418 28Makefile.in
730ad1a7 29all.texi
0c5e345c 30as.1
0c5e345c 31as.texinfo
db8e56dc 32c-a29k.texi
902f6515 33c-arm.texi
8a683c67 34c-d10v.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
0c5e345c
RP
55Do-last:
56
68eaa141
NC
57v850e_files="c-v850.texi"
58if ( echo $* | grep keep\-v850e > /dev/null ) ; then
68eaa141
NC
59 for i in $v850e_files ; do
60 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
61 if [ -n "${verbose}" ] ; then
62 echo Keeping v850e stuff in $i
63 fi
64 fi
65 done
ae6ecba5 66else
68eaa141 67 for i in $v850e_files ; do
ae6ecba5 68 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
68eaa141 69 if [ -n "${verbose}" ] ; then
ae6ecba5 70 echo Removing traces of \"v850e\" from $i...
68eaa141
NC
71 fi
72 cp $i new
ae6ecba5 73 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
68eaa141
NC
74 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
75 if [ -n "${verbose}" ] ; then
76 echo Caching $i in .Recover...
77 fi
78 mv $i .Recover
79 fi
80 mv new $i
81 fi
82 done
83fi
84
d745e6d9
NC
85m32rx_files="c-m32rx.texi as.texinfo"
86if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
87 for i in $m32rx_files ; do
88 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
89 if [ -n "${verbose}" ] ; then
90 echo Keeping m32rx stuff in $i
91 fi
92 fi
93 done
94else
95 for i in $m32rx_files ; do
96 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
97 if [ -n "${verbose}" ] ; then
98 echo Removing traces of \"m32rx\" from $i...
99 fi
100 cp $i new
101 sed '/start\-sanitize\-m32rx/,/end-\sanitize\-m32rx/d' < $i > new
102 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
103 if [ -n "${verbose}" ] ; then
104 echo Caching $i in .Recover...
105 fi
106 mv $i .Recover
107 fi
108 mv new $i
109 fi
110 done
111fi
112
3fb52301
DE
113# Don't try to clean directories here, as the 'mv' command will fail.
114# Also, grep fails on NFS mounted directories.
115
3fb52301
DE
116for i in * ; do
117 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
118 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
119 fi
120done
121
0c5e345c 122# End of file.
This page took 0.198278 seconds and 4 git commands to generate.