ecore - let the ecore_con_eet_*.c examples build.

When using the --enable-always-build-examples configure option, these two
examples need to be linked to eet.

@fix
This commit is contained in:
David Walter Seikel 2015-09-11 14:19:36 +10:00
parent 232352cb32
commit 99a497aa33
1 changed files with 4 additions and 2 deletions

View File

@ -264,10 +264,12 @@ ecore_getopt_example_SOURCES = ecore_getopt_example.c
ecore_getopt_example_LDADD = $(ECORE_COMMON_LDADD)
ecore_con_eet_client_example_SOURCES = ecore_con_eet_client_example.c ecore_con_eet_descriptor_example.c
ecore_con_eet_client_example_LDADD = $(ECORE_CON_COMMON_LDADD)
ecore_con_eet_client_example_LDADD = $(ECORE_CON_COMMON_LDADD) \
$(top_builddir)/src/lib/eet/libeet.la
ecore_con_eet_server_example_SOURCES = ecore_con_eet_server_example.c ecore_con_eet_descriptor_example.c
ecore_con_eet_server_example_LDADD = $(ECORE_CON_COMMON_LDADD)
ecore_con_eet_server_example_LDADD = $(ECORE_CON_COMMON_LDADD) \
$(top_builddir)/src/lib/eet/libeet.la
SRCS = \
ecore_animator_example.c \