diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-09-16 14:25:29 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-09-16 14:25:29 +0000 |
commit | c83143c8896752e139c82259e22c56715c313e7b (patch) | |
tree | a99aba40d0b91d19a46b15c1090cd8b399e347f9 /Makefile.am | |
parent | 528a9831c82be6c1275ee8172c2ed5c1191ea23d (diff) | |
download | efl-c83143c8896752e139c82259e22c56715c313e7b.tar.gz efl-c83143c8896752e139c82259e22c56715c313e7b.tar.xz efl-c83143c8896752e139c82259e22c56715c313e7b.zip |
merge: mostly fix tests and benchmark
need to fix the city stuff in tests and the benchmark
with the e17 data (need help with make rules :)
SVN revision: 76712
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 6521c6759..11052f092 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,7 +47,7 @@ endif pkgconfig_DATA += eina.pc -.PHONY: doc +.PHONY: doc benchmark # Documentation @@ -55,6 +55,8 @@ doc: @echo "entering doc/" make -C doc doc +# Unit tests + if EFL_ENABLE_COVERAGE lcov-reset: @@ -77,9 +79,21 @@ check-local: if EFL_ENABLE_COVERAGE @$(MAKE) lcov-reset endif - @./src/tests/eina_suite + @./src/tests/eina/eina_suite if EFL_ENABLE_COVERAGE @$(MAKE) lcov-report endif endif + +# benchmark + +benchmark: + @$(MAKE) -C src benchmark + @mkdir benchmark || true + @cd benchmark && ../src/benchmarks/eina/eina_bench `date +%F_%s` + +benchmark-e17: + @$(MAKE) -C src benchmark-e17 + @mkdir benchmark || true + @cd benchmark && ../src/benchmarks/eina/eina_bench `date +%F_%s` |