Fixed sanitization bugs.
[external/binutils.git] / gas / doc / .Sanitize
1 # Sanitize.in for devo.
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
17 Do-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
25 Things-to-keep:
26
27 Makefile.am
28 Makefile.in
29 all.texi
30 as.1
31 as.texinfo
32 c-a29k.texi
33 c-arm.texi
34 c-d10v.texi
35 c-h8300.texi
36 c-h8500.texi
37 c-hppa.texi
38 c-i386.texi
39 c-i960.texi
40 c-m68k.texi
41 c-mips.texi
42 c-ns32k.texi
43 c-sh.texi
44 c-sparc.texi
45 c-v850.texi
46 c-vax.texi
47 c-z8k.texi
48 gasp.texi
49 h8.texi
50 internals.texi
51
52 Things-to-lose:
53
54 Do-last:
55
56 v850e_files="c-v850.texi"
57 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
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
65 else
66         for i in $v850e_files ; do
67                 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
68                         if [ -n "${verbose}" ] ; then
69                                 echo Removing traces of \"v850e\" from $i...
70                         fi
71                         cp $i new
72                         sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
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
82 fi
83
84 # Don't try to clean directories here, as the 'mv' command will fail.
85 # Also, grep fails on NFS mounted directories.
86
87 for 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
91 done
92
93 # End of file.