From: Tim-Philipp Müller Date: Thu, 6 Sep 2007 12:08:20 +0000 (+0000) Subject: gtk-doc-plugins.mak: Just use the normal 'check' target and avoid a circular dependency. X-Git-Tag: RELEASE-0_10_15~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=76752780462a3c4da712d56d54c45402144b3d0f;p=platform%2Fupstream%2Fgst-common.git gtk-doc-plugins.mak: Just use the normal 'check' target and avoid a circular dependency. Original commit message from CVS: * gtk-doc-plugins.mak: Just use the normal 'check' target and avoid a circular dependency. --- diff --git a/ChangeLog b/ChangeLog index a5338c3..fd5ee3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,12 @@ 2007-09-06 Tim-Philipp Müller * gtk-doc-plugins.mak: + Just use the normal 'check' target and avoid a circular + dependency. + +2007-09-06 Tim-Philipp Müller + + * gtk-doc-plugins.mak: Add rule to error out if .hierarchy file contains tabs. 2007-08-20 Tim-Philipp Müller diff --git a/gtk-doc-plugins.mak b/gtk-doc-plugins.mak index 65e48ad..4bb57a4 100644 --- a/gtk-doc-plugins.mak +++ b/gtk-doc-plugins.mak @@ -138,14 +138,8 @@ inspect-build.stamp: touch inspect-build.stamp; \ fi -check-hierarchy: $(DOC_MODULE).hierarchy - if grep ' ' $(DOC_MODULE).hierarchy; then \ - echo "$(DOC_MODULE).hierarchy contains tabs, please fix"; \ - /bin/false; \ - fi - ### scan headers; done on every build ### -scan-build.stamp: $(HFILE_GLOB) $(EXTRA_HFILES) $(basefiles) scanobj-build.stamp inspect-build.stamp check-hierarchy +scan-build.stamp: $(HFILE_GLOB) $(EXTRA_HFILES) $(basefiles) scanobj-build.stamp inspect-build.stamp if test "x$(top_srcdir)" != "x$(top_builddir)" && \ test -d "$(top_builddir)/gst"; \ then \ @@ -322,6 +316,18 @@ uninstall-local: if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi; true # +# Checks +# +check-hierarchy: $(DOC_MODULE).hierarchy + @if grep ' ' $(DOC_MODULE).hierarchy; then \ + echo "$(DOC_MODULE).hierarchy contains tabs, please fix"; \ + /bin/false; \ + fi + +check: check-hierarchy + + +# # Require gtk-doc when making dist # if ENABLE_GTK_DOC @@ -349,3 +355,4 @@ dist-hook: dist-check-gtkdoc dist-hook-local done .PHONY : dist-hook-local +