examples: ecore: add all needed files to SOURCES to make sure they are distributed

This worked in-tree but never landed in a distribution tarball and thus the
examples build form such a tarball would fail.
This commit is contained in:
Stefan Schmidt 2016-05-18 11:34:21 +02:00
parent a2828a3be8
commit d1a2f1c724
1 changed files with 6 additions and 2 deletions

View File

@ -264,11 +264,15 @@ ecore_timer_example_LDADD = $(ECORE_COMMON_LDADD)
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_SOURCES = ecore_con_eet_client_example.c \
ecore_con_eet_descriptor_example.c \
ecore_con_eet_descriptor_example.h
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_SOURCES = ecore_con_eet_server_example.c \
ecore_con_eet_descriptor_example.c \
ecore_con_eet_descriptor_example.h
ecore_con_eet_server_example_LDADD = $(ECORE_CON_COMMON_LDADD) \
$(top_builddir)/src/lib/eet/libeet.la