This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / gdb / doc / .Sanitize
CommitLineData
08df3284 1# .Sanitize for gdb/doc.
a3e65382 2
08df3284 3# Each directory to survive its way into a release will need a file
a3e65382
RP
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
08df3284 14# done in this directory.
a3e65382
RP
15
16Do-first:
17
237eaf37
SS
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
21gdbtk_files="gdbgui.texinfo"
22
58840528
SS
23if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
24 lose_these_too="${gdbtk_files} ${lose_these_too}"
237eaf37 25 if [ -n "${verbose}" ] ; then
58840528 26 echo Deleting ${gdbtk_files}
237eaf37
SS
27 fi
28else
58840528 29 keep_these_too="${gdbtk_files} ${keep_these_too}"
237eaf37 30 if [ -n "${verbose}" ] ; then
58840528 31 echo Keeping ${gdbtk_files}
237eaf37
SS
32 fi
33fi
34
a3e65382
RP
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
145887f0
JG
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
a3e65382
RP
44Things-to-keep:
45
ace52033 46ChangeLog
db0af6f7 47LRS
3d29576b 48Makefile.in
34a6ce55 49a4rc.sed
ffd4e62b 50agentexpr.texi
a1330c48 51all-cfg.texi
a9363218 52annotate.texi
2e6516ff 53configure
3d29576b 54configure.in
429ad34d 55libgdb.texinfo
a3e65382 56gdb.texinfo
a3e65382 57gdbint.texinfo
a1330c48 58h8-cfg.texi
17cd0f82 59lpsrc.sed
dcfc4f45 60psrc.sed
73dfae8d 61refcard.tex
e6616862 62remote.texi
e505224d 63stabs.texinfo
a3e65382 64
87756e15
RP
65Things-to-lose:
66
274eb90a 67# Cygnus logo bitmap, huge file, no point in bundling all over the place.
40055e58 68cyglogo.eps
fd6d7556 69# Includes cyglogo.eps.
40055e58
FF
70cygref.tex
71
a09acbda
FF
72# The README file for gdb testers using snapshots.
73snapshots.readme
87756e15 74
a3e65382
RP
75Do-last:
76
237eaf37
SS
77# Don't try to clean directories here, as the 'mv' command will fail.
78# Also, grep fails on NFS mounted directories.
58840528
SS
79if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
80 echo Catering to RMS by removing traces of \"gdbtk\"...
237eaf37
SS
81 for i in * ; do
82 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
58840528
SS
83 echo Removing traces of \"gdbtk\" out of $i...
84 cp $i new
85 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
86 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
87 echo Caching $i in .Recover...
88 mv $i .Recover
89 fi
90 mv new $i
237eaf37
SS
91 fi
92 done
93else
58840528 94 echo Leaving \"gdbtk\" in the sources...
237eaf37
SS
95 for i in * ; do
96 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
58840528 97 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
237eaf37 98 cp $i new
58840528 99 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
237eaf37
SS
100 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
101 echo Caching $i in .Recover...
102 mv $i .Recover
103 fi
104 mv new $i
105 fi
106 done
107fi
108
a3e65382 109# End of file.
This page took 0.31004 seconds and 4 git commands to generate.