* Documentation/HtmlNav/docs-web.html,

Documentation/HtmlNav/index.html: Update pointers.
* Source/DocMakefile (before-clean, after-clean): Move obj out of the
way so it isn't removed when cleaning docs.
* Tools/DocMakefile: Idem.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20183 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2004-10-01 16:05:08 +00:00
parent 78ab0dc2b2
commit 77b00150c7
5 changed files with 39 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2004-10-01 Adam Fedor <fedor@gnu.org>
* Documentation/HtmlNav/docs-web.html,
Documentation/HtmlNav/index.html: Update pointers.
* Source/DocMakefile (before-clean, after-clean): Move obj out of the
way so it isn't removed when cleaning docs.
* Tools/DocMakefile: Idem.
2004-09-29 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSNotificationCenter.m: ([_postAndRelease:]) lock table

View file

@ -121,11 +121,14 @@
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td><a href="documentation/Developer/Gui/Reference/index.html">GUI Library API</a>&nbsp;&nbsp;(<a href="Developer/Gui/ReleaseNotes/ReleaseNotes.html">Release notes</a>)</td>
<td><a href="documentation/Developer/Gui/Reference/index.html">GUI Library API</a>&nbsp;&nbsp;(<a href="documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.html">Release notes</a>)</td>
</tr>
<tr>
<td><a href="documentation/Developer/Gui/Additions/index.html">GUI Additions API</a></td>
</tr>
<tr>
<td><a href="documentation/Developer/Gui/General/OpenStepCompliance.html">OpenStep and OS X Compliance</a></td>
</tr>
</table>
</td>
</tr></table>
@ -156,13 +159,13 @@
<a href="../information/machines_toc.html">Platforms</a><br />
<a href="../resources/sources.html">Download</a><br />
<a href="../experience/apps.html">Applications</a><br />
<a href="../information/userfaq_toc.html">User FAQ</a><br />
<a href="../documentation/User/GNUstep/userfaq_toc.html">User FAQ</a><br />
<br />
<b>Developers</b><br />
<a href="../experience/documentation.html">Getting Started</a><br />
<a href="../resources/docs-web.html">Documentation</a><br />
<a href="http://wiki.gnustep.org/">Wiki Docs</a><br />
<a href="../information/faq_toc.html">Developer FAQ</a><br />
<a href="../documentation/User/GNUstep/faq_toc.html">Developer FAQ</a><br />
<a href="../developers/map.html">Libraries</a><br />
<a href="../developers/whoiswho.html">Who's Who</a>?<br />
<br />

View file

@ -120,6 +120,9 @@
<tr>
<td><a href="Developer/Gui/Additions/index.html">GUI Additions API</a></td>
</tr>
<tr>
<td><a href="Developer/Gui/General/OpenStepCompliance.html">OpenStep and OS X Compliance</a></td>
</tr>
</table>
</td>
</tr></table>

View file

@ -208,6 +208,14 @@ before-all:: ../Documentation/Base \
cp ../Documentation/TypesAndConstants.gsdoc \
../Documentation/BaseAdditions
#
# 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.
#
@ -222,4 +230,7 @@ after-clean::
$(RM) BaseAdditions/dependencies; \
rmdir BaseAdditions; \
fi
if [ -e obj-save-link ]; then \
mv obj-save-link obj; \
fi

View file

@ -98,6 +98,14 @@ before-all:: ../Documentation/BaseTools \
../Documentation/BaseTools/gdomap.gsdoc: ../Tools/gdomap.gsdoc
cp -f ../Tools/gdomap.gsdoc ../Documentation/BaseTools
#
# 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.
#
@ -107,4 +115,7 @@ after-clean::
$(RM) BaseTools/dependencies; \
rmdir BaseTools; \
fi
if [ -e obj-save-link ]; then \
mv obj-save-link obj; \
fi