diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-11-18 07:12:38 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-11-18 07:12:38 +0000 |
commit | 4ae8b8cf8617ffcc2f82576ca586cff91f5fdda3 (patch) | |
tree | 2e7323a4f7f7ae08addcfed16795cc96ef5d39bd /src/Makefile_Eet.am | |
parent | 766a0c790d31795a2eaa51f9e7981b13eeb378a7 (diff) |
merge: do not use recursive make for unit tests
SVN revision: 79413
Diffstat (limited to 'src/Makefile_Eet.am')
-rw-r--r-- | src/Makefile_Eet.am | 40 |
1 files changed, 38 insertions, 2 deletions
diff --git a/src/Makefile_Eet.am b/src/Makefile_Eet.am index 625a19a66e..79d9a625a7 100644 --- a/src/Makefile_Eet.am +++ b/src/Makefile_Eet.am @@ -34,6 +34,7 @@ lib_eet_libeet_la_CPPFLAGS = \ -DPACKAGE_DATA_DIR=\"$(datadir)/eet\" \ -DEFL_EET_BUILD \ @EFL_CFLAGS@ \ +@EFL_COV_CFLAGS@ \ @EET_CFLAGS@ if HAVE_WINDOWS @@ -48,7 +49,7 @@ if HAVE_WINDOWS lib_eet_libeet_la_LIBADD += lib/evil/libevil.la endif -lib_eet_libeet_la_LIBADD += @EET_LIBS@ -lm +lib_eet_libeet_la_LIBADD += @EET_LIBS@ @EFL_COV_LIBS@ -lm lib_eet_libeet_la_LDFLAGS = -no-undefined -version-info @version_info@ @release_info@ @@ -69,6 +70,7 @@ bin_eet_eet_CPPFLAGS = \ -DPACKAGE_LIB_DIR=\"$(libdir)\" \ -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ @EFL_CFLAGS@ \ +@EFL_COV_CFLAGS@ \ @EET_CFLAGS@ if HAVE_WINDOWS @@ -85,4 +87,38 @@ if HAVE_WINDOWS bin_eet_eet_LDADD += lib/evil/libevil.la endif -bin_eet_eet_LDADD += @EET_LIBS@ +bin_eet_eet_LDADD += @EET_LIBS@ @EFL_COV_LIBS@ + +### Unit tests + +if EFL_ENABLE_TESTS + +check_PROGRAMS += tests/eet/eet_suite + +tests_eet_eet_suite_SOURCES = \ +tests/eet/eet_suite.c \ +tests/eet/eet_data_suite.c \ +tests/eet/eet_suite.h + +tests_eet_eet_suite_CPPFLAGS = \ +-I$(top_srcdir)/src/lib/eina \ +-I$(top_srcdir)/src/lib/eet \ +-I$(top_builddir)/src/lib/eina \ +-I$(top_builddir)/src/lib/eet \ +-DTESTS_SRC_DIR=\"$(top_srcdir)\" \ +@CHECK_CFLAGS@ \ +@EET_CFLAGS@ + +tests_eet_eet_suite_LDADD = \ +lib/eet/libeet.la \ +lib/eina/libeina.la \ +@CHECK_LIBS@ \ +@EET_LIBS@ + +endif + +EXTRA_DIST += \ +tests/eet/cert.pem \ +tests/eet/key_enc_none.pem \ +tests/eet/key_enc.pem \ +tests/eet/key.pem |