summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-29 17:20:23 +0000
committerDavid Robillard <d@drobilla.net>2007-07-29 17:20:23 +0000
commitadd7dd9f6b1bc17519d7c64282a7f2295735951c (patch)
tree8d11bb0aa787fa563ca18471c795ca90d8429a1d /doc
parentbd6f6beb3137bb637aced8b68873513b4c7dc769 (diff)
downloadlilv-add7dd9f6b1bc17519d7c64282a7f2295735951c.tar.gz
lilv-add7dd9f6b1bc17519d7c64282a7f2295735951c.tar.bz2
lilv-add7dd9f6b1bc17519d7c64282a7f2295735951c.zip
Build system fixes, building from top level doesn't recursively configure slv2, but slv2 is still independently packageable/buildable.
Think I've finally figured out how to do recursive autohell without resorting to suicide... git-svn-id: http://svn.drobilla.net/lad/slv2@650 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/reference.doxygen.in28
2 files changed, 15 insertions, 15 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 000ab84..6119e2d 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -2,5 +2,5 @@ EXTRA_DIST = mainpage.dox reference.doxygen
all-local: doc
-doc: reference.doxygen $(top_srcdir)/slv2/*.h
+doc: $(srcdir)/reference.doxygen.in reference.doxygen $(srcdir)/../slv2/*.h
doxygen reference.doxygen
diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in
index aad2ffc..584fb89 100644
--- a/doc/reference.doxygen.in
+++ b/doc/reference.doxygen.in
@@ -38,7 +38,7 @@ PROJECT_NUMBER = @PACKAGE_VERSION@
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
-OUTPUT_DIRECTORY = @abs_top_srcdir@/doc
+OUTPUT_DIRECTORY = @abs_top_builddir@/doc
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
# 4096 sub-directories (in 2 levels) under the output directory of each output
@@ -462,19 +462,19 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = @abs_top_srcdir@/doc/mainpage.dox \
- @abs_top_srcdir@/slv2/lv2.h \
- @abs_top_srcdir@/slv2/types.h \
- @abs_top_srcdir@/slv2/util.h \
- @abs_top_srcdir@/slv2/value.h \
- @abs_top_srcdir@/slv2/values.h \
- @abs_top_srcdir@/slv2/world.h \
- @abs_top_srcdir@/slv2/plugin.h \
- @abs_top_srcdir@/slv2/pluginclass.h \
- @abs_top_srcdir@/slv2/pluginclasses.h \
- @abs_top_srcdir@/slv2/plugininstance.h \
- @abs_top_srcdir@/slv2/plugins.h \
- @abs_top_srcdir@/slv2/port.h
+INPUT = @abs_srcdir@/../doc/mainpage.dox \
+ @abs_srcdir@/../slv2/lv2.h \
+ @abs_srcdir@/../slv2/types.h \
+ @abs_srcdir@/../slv2/util.h \
+ @abs_srcdir@/../slv2/value.h \
+ @abs_srcdir@/../slv2/values.h \
+ @abs_srcdir@/../slv2/world.h \
+ @abs_srcdir@/../slv2/plugin.h \
+ @abs_srcdir@/../slv2/pluginclass.h \
+ @abs_srcdir@/../slv2/pluginclasses.h \
+ @abs_srcdir@/../slv2/plugininstance.h \
+ @abs_srcdir@/../slv2/plugins.h \
+ @abs_srcdir@/../slv2/port.h
# 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