use $(MAKE) instead of make, echo the built doc package.
authorbarbieri <barbieri@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 19 Jan 2012 14:07:35 +0000 (14:07 +0000)
committerbarbieri <barbieri@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 19 Jan 2012 14:07:35 +0000 (14:07 +0000)
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
doc/Makefile.am

index bc6e99a..34a5762 100644 (file)
@@ -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
index 3790222..145376f 100644 (file)
@@ -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