Fix generating API docs (Windows makefile).

Also fixes a doxygen warning.
This commit is contained in:
Nick Treleaven 2011-11-02 15:03:17 +00:00
parent f31a84869d
commit 83d9f9e82b
2 changed files with 7 additions and 1 deletions

View File

@ -7,6 +7,7 @@
RST2HTML=python rst2html.py
DOXYGEN=doxygen
CP = copy
RM = del
-include ../localwin32.mk
@ -16,6 +17,10 @@ doc: geany.txt
hacking-doc: ../HACKING
$(RST2HTML) -stg --stylesheet=geany.css $^ hacking.html
# FIXME: we should also replace anything like @VERSION@
Doxyfile: Doxyfile.in
$(CP) $< $@
api-doc: Doxyfile
$(DOXYGEN)

View File

@ -32,7 +32,8 @@
* @link plugindata.h @endlink.
*/
/** Use the PLUGIN_VERSION_CHECK() macro instead. Required by Geany. */
/** Use the PLUGIN_VERSION_CHECK() macro instead. Required by Geany.
* @return . */
gint plugin_version_check(gint);
/** Use the PLUGIN_SET_INFO() macro to define it. Required by Geany.