From: cedric Date: Sun, 20 Nov 2011 14:37:14 +0000 (+0000) Subject: ecore: don't build binary if not requested. X-Git-Tag: 2.0_alpha~112^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=afa488a5fce671690446b0bfd52d1d056d98dcc3;p=framework%2Fuifw%2Fecore.git ecore: don't build binary if not requested. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@65442 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am index f7adf63..79110e4 100644 --- a/src/bin/Makefile.am +++ b/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