* eina: make -C doesn't exist on OpenBSD.
authorcedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 21 Nov 2010 11:03:53 +0000 (11:03 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 21 Nov 2010 11:03:53 +0000 (11:03 +0000)
        Patch from the OpenBSD team :
              Fabien Romano <fabien@openbsd.org>
              Jonathan Armani <armani@opensbd.org>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@54761 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

Makefile.am
src/Makefile.am

index f3badbd..1764986 100644 (file)
@@ -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`
 
index 2efad1c..0a6b2a3 100644 (file)
@@ -7,7 +7,7 @@ MAINTAINERCLEANFILES = Makefile.in
 if EFL_ENABLE_BENCHMARK
 
 benchmark: all
-       make -C tests eina_bench
+       cd tests && make eina_bench
 
 else