From 93f222c1d8ed748994f74662671d003495b16d43 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 22 Nov 2002 21:22:35 +0000 Subject: 2002-11-22 Havoc Pennington * dbus/dbus-message.c: move inline docs into .c file * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api so all docs are under doc/ (MAN_EXTENSION): generate man pages. Use extension ".3dbus" which matches ".3qt" on my system, I guess this is OK, I don't know really. (FILE_PATTERNS): look for .c files not .h, makes sense for plain C I think --- Doxyfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Doxyfile') diff --git a/Doxyfile b/Doxyfile index 77e50308..b260b861 100644 --- a/Doxyfile +++ b/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- PROJECT_NAME = DBus PROJECT_NUMBER = 1.0 -OUTPUT_DIRECTORY = apidocs +OUTPUT_DIRECTORY = doc/api OUTPUT_LANGUAGE = English EXTRACT_ALL = NO EXTRACT_PRIVATE = NO @@ -49,8 +49,8 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = dbus server -FILE_PATTERNS = *.h +INPUT = dbus bus +FILE_PATTERNS = *.c RECURSIVE = YES #EXCLUDE = test @@ -126,9 +126,9 @@ RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- -GENERATE_MAN = NO +GENERATE_MAN = YES MAN_OUTPUT = man -MAN_EXTENSION = .dbus +MAN_EXTENSION = .3dbus MAN_LINKS = YES #--------------------------------------------------------------------------- # configuration options related to the XML output -- cgit