8a717dc8b6a01ac18f5a0ce5c5a50b476909f893
[deliverable/binutils-gdb.git] / gdb / doc / .Sanitize
1 # .Sanitize for gdb/doc.
2
3 # Each directory to survive its way into a release will need a file
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
14 # done in this directory.
15
16 Do-first:
17
18 # Note that gdbgui.texinfo is actually a generic document, but right
19 # now it only describes gdbtk, so we keep/lose as a gdbtk file.
20
21 gdbtk_files="gdbgui.texinfo"
22
23 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
24 lose_these_too="${gdbtk_files} ${lose_these_too}"
25 if [ -n "${verbose}" ] ; then
26 echo Deleting ${gdbtk_files}
27 fi
28 else
29 keep_these_too="${gdbtk_files} ${keep_these_too}"
30 if [ -n "${verbose}" ] ; then
31 echo Keeping ${gdbtk_files}
32 fi
33 fi
34
35 # All files listed between the "Things-to-keep:" line and the
36 # "Files-to-sed:" line will be kept. All other files will be removed.
37 # Directories listed in this section will have their own Sanitize
38 # called. Directories not listed will be removed in their entirety
39 # with rm -rf.
40
41 # Note that we don't even keep the "config" directory, since it is
42 # not currently used (since we abolished use of M4 in the docs).
43
44 Things-to-keep:
45
46 ChangeLog
47 Makefile.in
48 a4rc.sed
49 all-cfg.texi
50 annotate.texi
51 configure
52 configure.in
53 libgdb.texinfo
54 gdb.texinfo
55 gdbint.texinfo
56 h8-cfg.texi
57 lpsrc.sed
58 psrc.sed
59 refcard.tex
60 remote.texi
61 stabs.texinfo
62
63 Things-to-lose:
64
65 # Cygnus logo bitmap, huge file, no point in bundling all over the place.
66 cyglogo.eps
67 # Includes cyglogo.eps.
68 cygref.tex
69
70 # The README file for gdb testers using snapshots.
71 snapshots.readme
72
73 Do-last:
74
75 # Don't try to clean directories here, as the 'mv' command will fail.
76 # Also, grep fails on NFS mounted directories.
77 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
78 echo Catering to RMS by removing traces of \"gdbtk\"...
79 for i in * ; do
80 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
81 echo Removing traces of \"gdbtk\" out of $i...
82 cp $i new
83 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
84 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
85 echo Caching $i in .Recover...
86 mv $i .Recover
87 fi
88 mv new $i
89 fi
90 done
91 else
92 echo Leaving \"gdbtk\" in the sources...
93 for i in * ; do
94 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
95 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
96 cp $i new
97 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
98 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
99 echo Caching $i in .Recover...
100 mv $i .Recover
101 fi
102 mv new $i
103 fi
104 done
105 fi
106
107 # End of file.
This page took 0.031322 seconds and 3 git commands to generate.