This series integrates GTK-DOC into our build process via a gtkdoc build target. This is to provide internal API documentation in a more accessible format. Once this gets merged into the tree, I'll add a nightly cron job on qemu.org so that there is always a copy of the latest internal API documentation on the website.
I've posted the output of already on qemu.org at: http://wiki.qemu.org/docs-internal/ All it takes to add to this is to submit a patch converting a file to use gtk-doc syntax and then move the header into include/ For more information on gtk-doc, see: http://developer.gnome.org/gtk-doc-manual/unstable/ Anthony Liguori (4): memory: make memory API parsable by gtkdoc-scan docs: add build infrastructure for gtkdocs memory: update documentation to be in gtk-doc format memory: move header into include/ and add to QEMU docs Makefile | 6 +- Makefile.docs | 15 ++ QEMU-docs.xml | 32 +++ include/memory.h | 566 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ ioport.h | 14 +- memory.c | 6 +- memory.h | 522 ------------------------------------------------- 7 files changed, 628 insertions(+), 533 deletions(-) create mode 100644 Makefile.docs create mode 100644 QEMU-docs.xml create mode 100644 include/memory.h delete mode 100644 memory.h -- 1.7.4.1