From b0d2945b5b387feea20c43f74914177c4f74f1ed Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Sat, 17 Nov 2012 04:26:20 +0100 Subject: Allow build without gtk-doc Signed-off-by: Anthony G. Basile Signed-off-by: Felipe Contreras --- autogen.sh | 4 ++-- docs/gudev/Makefile.am | 6 ++++-- docs/libudev/Makefile.am | 6 ++++-- 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 -- cgit v1.2.3-54-g00ecf