From: <sg...@us...> - 2003-10-14 03:36:30
|
Update of /cvsroot/libfunutil/libfunutil/doc/api In directory sc8-pr-cvs1:/tmp/cvs-serv9286/doc/api Modified Files: Makefile Doxyfile.in Log Message: s11n docs are now conditionally added to doxygen. Index: Makefile =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/doc/api/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile 14 Oct 2003 03:12:57 -0000 1.8 +++ Makefile 14 Oct 2003 03:36:25 -0000 1.9 @@ -20,11 +20,17 @@ clean-doxygen: -rm -fr latex +DOXYGEN_INCLUDE_PATHS = $(top_includesdir)/fun +ifeq (1,$(configure_enable_s11n)) + DOXYGEN_INCLUDE_PATHS += $(top_includesdir)/s11n $(top_includesdir)/toolbox +endif + atparser = $(top_srcdir)/toc/bin/atsign_parse $(DOXYFILE): Makefile $(DOXYFILE_IN) $(call toc_atparse_file,$(DOXYFILE_IN),$@, \ BT_PKG_NAME=$(PACKAGE_NAME) BT_PKG_VERSION=$(PACKAGE_VERSION) \ BT_PROG_PERL=$(PERL_BIN) \ top_includesdir="$(top_includesdir)" \ + INPUT_PATHS="$(DOXYGEN_INCLUDE_PATHS)" \ ) Index: Doxyfile.in =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/doc/api/Doxyfile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Doxyfile.in 14 Oct 2003 03:12:24 -0000 1.6 +++ Doxyfile.in 14 Oct 2003 03:36:25 -0000 1.7 @@ -311,7 +311,7 @@ # Also, really we should feed doxygen the list of source files we actually # build (if we can get it from the makefiles) rather than having to exclude # the crap which isn't worth building, below. -INPUT = @top_includesdir@/fun @top_includesdir@/s11n @top_includesdir@/toolbox index.txt +INPUT = @INPUT_PATHS@ index.txt # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp |