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.



SVN revision: 67343
This commit is contained in:
Gustavo Sverzut Barbieri 2012-01-19 14:07:35 +00:00
parent 09f87ff655
commit 44467fed7a
4 changed files with 11 additions and 9 deletions

View 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

View 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

View File

@ -57,7 +57,7 @@ m4/efl_path_max.m4
doc:
@echo "entering doc/"
@cd doc && make doc
@cd doc && $(MAKE) doc
# Unit tests
@ -91,9 +91,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
else
lcov-reset:
@echo "reconfigure with --enable-coverage"
@ -108,7 +108,7 @@ endif
if EFL_ENABLE_BENCHMARK
benchmark:
@cd src && make benchmark
@cd src && $(MAKE) benchmark
@mkdir result || true
@cd result && ../src/tests/eina_bench `date +%F_%s`

View File

@ -20,6 +20,7 @@ doc: all
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