$OpenBSD: patch-Makefile_in,v 1.1 2011/01/16 00:31:30 laurent Exp $

make -C is not supported under bsd make, cd then make so
we can generate doc and run benchmark.

--- Makefile.in.orig	Sun Nov 21 00:11:39 2010
+++ Makefile.in	Sun Nov 21 02:55:34 2010
@@ -875,7 +875,7 @@ uninstall-am: uninstall-pkgconfigDATA
 
 doc:
 	@echo "entering doc/"
-	make -C doc doc
+	cd doc && make doc
 
 # Unit tests
 
@@ -915,7 +915,7 @@ doc:
 @EFL_ENABLE_COVERAGE_FALSE@	@echo "reconfigure with --enable-tests --enable-coverage"
 
 @EFL_ENABLE_BENCHMARK_TRUE@benchmark:
-@EFL_ENABLE_BENCHMARK_TRUE@	@make -C src benchmark
+@EFL_ENABLE_BENCHMARK_TRUE@	@cd src && make benchmark
 @EFL_ENABLE_BENCHMARK_TRUE@	@mkdir result || true
 @EFL_ENABLE_BENCHMARK_TRUE@	@cd result && ../src/tests/eina_bench `date +%F_%s`
 
