Added missing sanitization markers.
[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
40c-m68k.texi
41c-mips.texi
4d2ba393 42c-ns32k.texi
db8e56dc
KR
43c-sh.texi
44c-sparc.texi
ae6ecba5 45c-v850.texi
db8e56dc
KR
46c-vax.texi
47c-z8k.texi
24b9a4e2 48gasp.texi
4f6a1ad1 49h8.texi
01f8d309 50internals.texi
0c5e345c 51
87756e15
RP
52Things-to-lose:
53
0c5e345c
RP
54Do-last:
55
68eaa141
NC
56v850e_files="c-v850.texi"
57if ( echo $* | grep keep\-v850e > /dev/null ) ; then
68eaa141
NC
58 for i in $v850e_files ; do
59 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
60 if [ -n "${verbose}" ] ; then
61 echo Keeping v850e stuff in $i
62 fi
63 fi
64 done
ae6ecba5 65else
68eaa141 66 for i in $v850e_files ; do
ae6ecba5 67 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
68eaa141 68 if [ -n "${verbose}" ] ; then
ae6ecba5 69 echo Removing traces of \"v850e\" from $i...
68eaa141
NC
70 fi
71 cp $i new
ae6ecba5 72 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
68eaa141
NC
73 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
74 if [ -n "${verbose}" ] ; then
75 echo Caching $i in .Recover...
76 fi
77 mv $i .Recover
78 fi
79 mv new $i
80 fi
81 done
82fi
83
3fb52301
DE
84# Don't try to clean directories here, as the 'mv' command will fail.
85# Also, grep fails on NFS mounted directories.
86
3fb52301
DE
87for i in * ; do
88 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
89 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
90 fi
91done
92
0c5e345c 93# End of file.
This page took 0.198116 seconds and 4 git commands to generate.