* Documentation/ReleaseNotes.gsdoc: Format fixes.

* Source/DocMakefile (before-clean, after-clean): Move obj out of the
way so it isn't removed when cleaning docs.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20182 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2004-10-01 14:57:39 +00:00
parent 137396c189
commit 2d88c43c22
3 changed files with 19 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2004-10-01 Adam Fedor <fedor@gnu.org>
* Documentation/ReleaseNotes.gsdoc: Format fixes.
* Source/DocMakefile (before-clean, after-clean): Move obj out of the
way so it isn't removed when cleaning docs.
2004-10-01 Adam Fedor <fedor@gnu.org>
* Source/GNUmakefile.preamble: Add filter out flags for

View file

@ -41,8 +41,8 @@
into a separate package (gnustep-ppd). There still
exists a single Generic Postscript Printer PPD which
should work in many cases for printing using the
standard @samp{lpr} interface. In the future, a
@samp{CUPS} interface should be available that provides
standard <var>lpr</var> interface. In the future, a
<var>CUPS</var> interface should be available that provides
all the necessary printer information automatically. If
you still want use of the PPD's, you must install the
gnustep-ppd package, although this is not required for

View file

@ -213,6 +213,14 @@ before-all:: ../Documentation/Gui \
../Documentation/GuiAdditions:
$(MKDIRS) ../Documentation/GuiAdditions
#
# Work around our screwy doc generation implementation, sigh...
#
before-clean::
if [ -e obj ]; then \
mv obj obj-save-link; \
fi
#
# Clean up temporary files used while generating documentation.
#
@ -227,4 +235,7 @@ after-clean::
$(RM) GuiAdditions/dependencies; \
rmdir GuiAdditions; \
fi
if [ -e obj-save-link ]; then \
mv obj-save-link obj; \
fi