From: Cedric BAIL Date: Sun, 20 Nov 2011 14:37:14 +0000 (+0000) Subject: ecore: don't build binary if not requested. X-Git-Tag: submit/devel/efl/20131022.203902~7422 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e44040cf6a711a5551cae2bfd64f850d0b617dc;p=platform%2Fupstream%2Fefl.git ecore: don't build binary if not requested. SVN revision: 65442 --- diff --git a/legacy/ecore/src/bin/Makefile.am b/legacy/ecore/src/bin/Makefile.am index f7adf63..79110e4 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