summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2012-11-17 04:26:20 +0100
committerAnthony G. Basile <blueness@gentoo.org>2012-11-17 13:09:34 -0500
commitb0d2945b5b387feea20c43f74914177c4f74f1ed (patch)
tree5ae86596d7791170f1b8277aac2cb50c2fd9e7db
parent5c40c23567ca5ec9fe702c3455e7a6d4c52d9324 (diff)
Allow build without gtk-doc
Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
-rwxr-xr-xautogen.sh4
-rw-r--r--docs/gudev/Makefile.am6
-rw-r--r--docs/libudev/Makefile.am6
3 files changed, 10 insertions, 6 deletions
diff --git a/autogen.sh b/autogen.sh
index e3407457b0..e5bbcdfac7 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,8 +6,8 @@ if type -p gtkdocize > /dev/null; then
gtkdocize --docdir docs
gtkdocargs=--enable-gtk-doc
fi
-
-aclocal && \
+
+aclocal -I m4 && \
autoheader && \
autoconf && \
libtoolize --copy && \
diff --git a/docs/gudev/Makefile.am b/docs/gudev/Makefile.am
index 57334b6ddc..e0039e7606 100644
--- a/docs/gudev/Makefile.am
+++ b/docs/gudev/Makefile.am
@@ -94,8 +94,11 @@ GTKDOC_LIBS = \
$(GLIB_LIBS) \
$(top_builddir)/libgudev-1.0.la
+if ENABLE_GTK_DOC
+EXTRA_DIST=
+
# This includes the standard gtk-doc make rules, copied by gtkdocize.
-include $(top_srcdir)/docs/gtk-doc.make
+-include $(top_srcdir)/docs/gtk-doc.make
# Other files to distribute
# e.g. EXTRA_DIST += version.xml.in
@@ -107,7 +110,6 @@ EXTRA_DIST += version.xml.in
#DISTCLEANFILES +=
# Comment this out if you want your docs-status tested during 'make check'
-if ENABLE_GTK_DOC
TESTS_ENVIRONMENT = cd $(top_srcdir)
TESTS = $(GTKDOC_CHECK)
endif
diff --git a/docs/libudev/Makefile.am b/docs/libudev/Makefile.am
index c6d7b8ca25..7899bd1145 100644
--- a/docs/libudev/Makefile.am
+++ b/docs/libudev/Makefile.am
@@ -88,8 +88,11 @@ override LDFLAGS=
GTKDOC_CFLAGS=
GTKDOC_LIBS=
+if ENABLE_GTK_DOC
+EXTRA_DIST=
+
# This includes the standard gtk-doc make rules, copied by gtkdocize.
-include $(top_srcdir)/docs/gtk-doc.make
+-include $(top_srcdir)/docs/gtk-doc.make
# Other files to distribute
# e.g. EXTRA_DIST += version.xml.in
@@ -101,7 +104,6 @@ EXTRA_DIST += version.xml.in
#DISTCLEANFILES +=
# Comment this out if you want your docs-status tested during 'make check'
-if ENABLE_GTK_DOC
TESTS_ENVIRONMENT = cd $(top_srcdir)
TESTS = $(GTKDOC_CHECK)
endif