From b63e88070937c3e87fd51e6fcf1538e638c050cb Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 8 Dec 2009 15:08:10 -0600 Subject: Adding a check rule for documentation. --- docs/reference/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index e2a02cd..2f4c584 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -91,5 +91,5 @@ EXTRA_DIST += version.xml.in #DISTCLEANFILES += # Comment this out if you want your docs-status tested during 'make check' -#TESTS = $(GTKDOC_CHECK) +TESTS = $(GTKDOC_CHECK) -- cgit v1.2.3 From b8e1a7185cbdc978f1a637c719ef4b8a3faec94a Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 8 Dec 2009 15:37:48 -0600 Subject: Documenting the AppIndicatorClass as well. --- docs/reference/libappindicator-sections.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'docs') diff --git a/docs/reference/libappindicator-sections.txt b/docs/reference/libappindicator-sections.txt index d64f53a..b994297 100644 --- a/docs/reference/libappindicator-sections.txt +++ b/docs/reference/libappindicator-sections.txt @@ -15,6 +15,7 @@ AppIndicatorStatus AppIndicatorPrivate AppIndicator AppIndicator +AppIndicatorClass app_indicator_get_type app_indicator_new app_indicator_set_status -- cgit v1.2.3 From e4cdb13a8f940e6cefb757fac5fc038b7310ce22 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 8 Dec 2009 16:02:28 -0600 Subject: Putting gtk-doc-check into a wrapper to it runs in srcdir --- docs/reference/Makefile.am | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index 2f4c584..67582f2 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -91,5 +91,12 @@ EXTRA_DIST += version.xml.in #DISTCLEANFILES += # Comment this out if you want your docs-status tested during 'make check' -TESTS = $(GTKDOC_CHECK) +TESTS = gtkdoc-in-srcdir + +gtkdoc-in-srcdir: Makefile.am + @echo "#!/bin/sh" > $@ + @echo "cd \"$(srcdir)\"" >> $@ + @echo "$(GTKDOC_CHECK)" >> $@ + @chmod +x $@ +DISTCLEANFILES = gtkdoc-in-srcdir -- cgit v1.2.3