* doc/Makefile.am: New file, based on old doc/Makefile.in.
[deliverable/binutils-gdb.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-vax.texi
46 c-z8k.texi
47 gasp.texi
48 h8.texi
49 internals.texi
50
51 Things-to-lose:
52
53 Do-last:
54
55 # Don't try to clean directories here, as the 'mv' command will fail.
56 # Also, grep fails on NFS mounted directories.
57
58 if [ -n "${verbose}" ] ; then
59 echo Processing \"arc\"...
60 fi
61
62 arc_files="all.texi as.texinfo"
63 if ( echo $* | grep keep\-arc > /dev/null ) ; then
64 for i in $arc_files ; do
65 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
66 if [ -n "${verbose}" ] ; then
67 echo Keeping arc stuff in $i
68 fi
69 fi
70 done
71 else
72 for i in $arc_files ; do
73 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
74 if [ -n "${verbose}" ] ; then
75 echo Removing traces of \"arc\" from $i...
76 fi
77 cp $i new
78 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
79 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
80 if [ -n "${verbose}" ] ; then
81 echo Caching $i in .Recover...
82 fi
83 mv $i .Recover
84 fi
85 mv new $i
86 fi
87 done
88 fi
89 if [ -n "${verbose}" ] ; then
90 echo Processing \"arc\"...
91 fi
92
93 for i in * ; do
94 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
95 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
96 fi
97 done
98
99 # End of file.
This page took 0.033103 seconds and 4 git commands to generate.