summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--Doxyfile.in (renamed from Doxyfile)4
-rw-r--r--Makefile.am2
-rw-r--r--configure.in1
4 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ff71e847..489f84aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2002-11-22 Havoc Pennington <hp@redhat.com>
+ * 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 <hp@redhat.com>
+
* 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
index b260b861..224271b0 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 49809c6c..e1450cdd 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 6a9353e2..c6638254 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