From 0ef42b180fbb20b191cb918cefbdff01beba6c96 Mon Sep 17 00:00:00 2001 From: barbieri Date: Thu, 19 Jan 2012 14:07:35 +0000 Subject: [PATCH] use $(MAKE) instead of make, echo the built doc package. This removes the annoying: make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. and with the package name I can upload it easily to somewhere else. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eet@67343 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- Makefile.am | 8 ++++---- doc/Makefile.am | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index bc6e99a..34a5762 100644 --- a/Makefile.am +++ b/Makefile.am @@ -49,7 +49,7 @@ pkgconfig_DATA = eet.pc doc: @echo "entering doc/" - make -C doc doc + $(MAKE) -C doc doc # Unit tests @@ -83,9 +83,9 @@ lcov-report: @genhtml -t "$(PACKAGE_STRING)" -o coverage coverage/coverage.info coverage: - @make lcov-reset - @make check - @make lcov-report + @$(MAKE) lcov-reset + @$(MAKE) check + @$(MAKE) lcov-report clean-local: @rm -rf coverage diff --git a/doc/Makefile.am b/doc/Makefile.am index 3790222..145376f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -20,6 +20,7 @@ doc: doc-clean bzip2 -9 $(PACKAGE_DOCNAME).tar rm -rf $(PACKAGE_DOCNAME)/ mv $(PACKAGE_DOCNAME).tar.bz2 $(top_builddir) + @echo "Documentation Package: $(top_builddir)/$(PACKAGE_DOCNAME).tar.bz2" clean-local: doc-clean -- 2.7.4