diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/Makefile.am | 2 | ||||
-rw-r--r-- | doc/doxygen.cfg.in (renamed from doc/doxygen.cfg) | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index eedd98e..72689b6 100644 --- a/configure.ac +++ b/configure.ac @@ -65,6 +65,6 @@ AC_DEFINE([API_EXPORTED], [__attribute__((visibility("default")))], [Default vis AM_CFLAGS="-std=gnu99 $inline_cflags -Wall -Wundef -Wunused -Wstrict-prototypes -Werror-implicit-function-declaration -Wno-pointer-sign -Wshadow" AC_SUBST(AM_CFLAGS) -AC_CONFIG_FILES([libusb-1.0.pc] [Makefile] [libusb/Makefile] [examples/Makefile] [doc/Makefile]) +AC_CONFIG_FILES([libusb-1.0.pc] [Makefile] [libusb/Makefile] [examples/Makefile] [doc/Makefile] [doc/doxygen.cfg]) AC_OUTPUT diff --git a/doc/Makefile.am b/doc/Makefile.am index ba13825..7659cdf 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -EXTRA_DIST = doxygen.cfg +EXTRA_DIST = doxygen.cfg.in docs: doxygen.cfg doxygen $^ diff --git a/doc/doxygen.cfg b/doc/doxygen.cfg.in index 64face5..574b52f 100644 --- a/doc/doxygen.cfg +++ b/doc/doxygen.cfg.in @@ -477,7 +477,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = ../libusb +INPUT = @top_srcdir@/libusb # This tag can be used to specify the character encoding of the source files that # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default @@ -505,7 +505,7 @@ RECURSIVE = NO # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. -EXCLUDE = ../libusb/libusbi.h +EXCLUDE = @top_srcdir@/libusb/libusbi.h # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded |