From: Havoc Pennington Date: Fri, 22 Nov 2002 21:33:07 +0000 (+0000) Subject: 2002-11-22 Havoc Pennington X-Git-Tag: dbus-0.1~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a4cb6b95ffc3acdef34b6f014a83c02be963fae;p=platform%2Fupstream%2Fdbus.git 2002-11-22 Havoc Pennington * Makefile.am: include "Doxyfile" target in all-local * configure.in: generate the Doxyfile * Doxyfile.in: move Doxyfile here, so we can use configure to generate a Doxyfile with the right version number etc. --- diff --git a/ChangeLog b/ChangeLog index ff71e84..489f84a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,15 @@ 2002-11-22 Havoc Pennington + * Makefile.am: include "Doxyfile" target in all-local + + * configure.in: generate the Doxyfile + + * Doxyfile.in: move Doxyfile here, so we can use + configure to generate a Doxyfile with the right + version number etc. + +2002-11-22 Havoc Pennington + * dbus/dbus-message.c: move inline docs into .c file * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api diff --git a/Doxyfile b/Doxyfile.in similarity index 99% rename from Doxyfile rename to Doxyfile.in index b260b86..224271b 100644 --- a/Doxyfile +++ b/Doxyfile.in @@ -3,8 +3,8 @@ #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- -PROJECT_NAME = DBus -PROJECT_NUMBER = 1.0 +PROJECT_NAME = D-BUS +PROJECT_NUMBER = @VERSION@ OUTPUT_DIRECTORY = doc/api OUTPUT_LANGUAGE = English EXTRACT_ALL = NO diff --git a/Makefile.am b/Makefile.am index 49809c6..e1450cd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,2 +1,4 @@ SUBDIRS=dbus bus test doc + +all-local: Doxyfile diff --git a/configure.in b/configure.in index 6a9353e..c663825 100644 --- a/configure.in +++ b/configure.in @@ -58,6 +58,7 @@ AC_SUBST(DBUS_BUS_LIBS) AC_OUTPUT([ Makefile +Doxyfile dbus/Makefile bus/Makefile test/Makefile