From 1e44040cf6a711a5551cae2bfd64f850d0b617dc Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Sun, 20 Nov 2011 14:37:14 +0000 Subject: [PATCH] ecore: don't build binary if not requested. SVN revision: 65442 --- legacy/ecore/src/bin/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/legacy/ecore/src/bin/Makefile.am b/legacy/ecore/src/bin/Makefile.am index f7adf635e9..79110e41be 100644 --- a/legacy/ecore/src/bin/Makefile.am +++ b/legacy/ecore/src/bin/Makefile.am @@ -8,6 +8,10 @@ ECORE_CONFIG_PROG = ECORE_CONFIG_LIB = endif +if EFL_ENABLE_TESTS +ECORE_TEST_PROG = ecore_test +endif + AM_CPPFLAGS = \ -I$(top_srcdir)/src/lib/ecore \ -I$(top_srcdir)/src/lib/ecore_config \ @@ -18,7 +22,7 @@ AM_CPPFLAGS = \ -DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ @EINA_CFLAGS@ @EVAS_CFLAGS@ -bin_PROGRAMS = $(ECORE_CONFIG_PROG) ecore_test +bin_PROGRAMS = $(ECORE_CONFIG_PROG) $(ECORE_TEST_PROG) ecore_config_SOURCES = \ ecore_config.c