diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-09-23 19:56:44 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-09-23 19:56:44 +0000 |
commit | 851975dbcccdf4c70689a9d8c2fa7359fb6cc89e (patch) | |
tree | ca1fad45795a8d325c706681334c9df3d301d50c /Makefile.am | |
parent | 58f5ec5047fcc32540176c3d4f0f4e3b959fddea (diff) | |
download | efl-851975dbcccdf4c70689a9d8c2fa7359fb6cc89e.tar.gz efl-851975dbcccdf4c70689a9d8c2fa7359fb6cc89e.tar.xz efl-851975dbcccdf4c70689a9d8c2fa7359fb6cc89e.zip |
merge : remove useless CONDITIONALs and make eet build optional; eina is always built
SVN revision: 77026
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c1a9b4507..a1f81df2e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,7 +58,11 @@ if HAVE_WINDOWS pkgconfig_DATA += evil.pc endif -pkgconfig_DATA += eina.pc eet.pc +pkgconfig_DATA += eina.pc + +if EFL_BUILD_EET +pkgconfig_DATA += eet.pc +endif .PHONY: doc benchmark examples install-examples @@ -94,7 +98,9 @@ if EFL_ENABLE_COVERAGE @$(MAKE) $(AM_MAKEFLAGS) lcov-reset endif @./src/tests/eina/eina_suite$(EXEEXT) +if EFL_BUILD_EET @./src/tests/eet/eet_suite$(EXEEXT) +endif if EFL_ENABLE_COVERAGE @$(MAKE) $(AM_MAKEFLAGS) lcov-report endif |