summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am4
-rw-r--r--src/Makefile.am2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index f3badbd..1764986 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -56,7 +56,7 @@ m4/eina_check.m4
doc:
@echo "entering doc/"
- make -C doc doc
+ @cd doc && make doc
# Unit tests
@@ -107,7 +107,7 @@ endif
if EFL_ENABLE_BENCHMARK
benchmark:
- @make -C src benchmark
+ @cd src && make benchmark
@mkdir result || true
@cd result && ../src/tests/eina_bench `date +%F_%s`
diff --git a/src/Makefile.am b/src/Makefile.am
index 2efad1c..0a6b2a3 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -7,7 +7,7 @@ MAINTAINERCLEANFILES = Makefile.in
if EFL_ENABLE_BENCHMARK
benchmark: all
- make -C tests eina_bench
+ cd tests && make eina_bench
else