elocation test binary variables should not be defined if tests don't exist

src/Makefile_Elocation.am:32: warning: variable 'tests_elocation_elocation_suite_SOURCES' is defined but no program or
src/Makefile_Elocation.am:32: library has 'tests_elocation_elocation_suite' as canonical name (possible typo)
src/Makefile.am:82:   'src/Makefile_Elocation.am' included from here
src/Makefile_Elocation.am:41: warning: variable 'tests_elocation_elocation_suite_LDADD' is defined but no program or
src/Makefile_Elocation.am:41: library has 'tests_elocation_elocation_suite' as canonical name (possible typo)
src/Makefile.am:82:   'src/Makefile_Elocation.am' included from here
src/Makefile_Elocation.am:42: warning: variable 'tests_elocation_elocation_suite_DEPENDENCIES' is defined but no program or
src/Makefile_Elocation.am:42: library has 'tests_elocation_elocation_suite' as canonical name (possible typo)
src/Makefile.am:82:   'src/Makefile_Elocation.am' included from here
This commit is contained in:
Mike Blumenkrantz 2014-12-08 15:26:09 -05:00
parent d45b7013fe
commit 9dbd2db21b
1 changed files with 10 additions and 10 deletions

View File

@ -29,16 +29,16 @@ if EFL_ENABLE_TESTS
#check_PROGRAMS += tests/elocation/elocation_suite
#TESTS += tests/elocation/elocation_suite
tests_elocation_elocation_suite_SOURCES = \
tests/elocation/elocation_suite.c
#tests_elocation_elocation_suite_SOURCES = \
#tests/elocation/elocation_suite.c
tests_elocation_elocation_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \
-DTESTS_WD=\"`pwd`\" \
-DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/elocation\" \
-DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elocation\" \
@CHECK_CFLAGS@ \
@ELOCATION_CFLAGS@
tests_elocation_elocation_suite_LDADD = @CHECK_LIBS@ @USE_ELOCATION_LIBS@
tests_elocation_elocation_suite_DEPENDENCIES = @USE_ELOCATION_INTERNAL_LIBS@
#tests_elocation_elocation_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \
#-DTESTS_WD=\"`pwd`\" \
#-DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/elocation\" \
#-DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/elocation\" \
#@CHECK_CFLAGS@ \
#@ELOCATION_CFLAGS@
#tests_elocation_elocation_suite_LDADD = @CHECK_LIBS@ @USE_ELOCATION_LIBS@
#tests_elocation_elocation_suite_DEPENDENCIES = @USE_ELOCATION_INTERNAL_LIBS@
endif