elm_web: Fix compilation of elm_web_none

elm_web_none.eo.h was not found:
- it wasn't generated
- its path wasn't added to the include path
This commit is contained in:
Jean-Philippe Andre 2016-03-30 11:25:34 +09:00
parent 984dac4d36
commit 76fcf06126
1 changed files with 9 additions and 5 deletions

View File

@ -1048,13 +1048,16 @@ moduleweb_nonepkg_LTLIBRARIES = modules/elementary/web/none/module.la
install_moduleweb_nonepkgLTLIBRARIES = install-moduleweb_nonepkgLTLIBRARIES
$(install-moduleweb_nonepkgLTLIBRARIES): install-libLTLIBRARIES
BUILT_SOURCES += \
modules/elementary/web/none/elm_web_none.eo.h \
modules/elementary/web/none/elm_web_none.eo.c
elm_web_none_eolian_files = modules/elementary/web/none/elm_web_none.eo
elm_web_none_eolian_c = $(elm_web_none_eolian_files:%.eo=%.eo.c)
elm_web_none_eolian_h = $(elm_web_none_eolian_files:%.eo=%.eo.h)
BUILT_SOURCES += $(elm_web_none_eolian_c) $(elm_web_none_eolian_h)
modules_elementary_web_none_module_la_SOURCES = \
modules/elementary/web/none/elm_web_none.c \
modules/elementary/web/none/elm_web_none.eo.h
modules/elementary/web/none/elm_web_none.c
modules_elementary_web_none_module_la_CPPFLAGS = \
-DELM_INTERNAL_API_ARGESFSDFEFC=1 \
-DMODULES_PATH=\"$(libdir)/elementary/modules\" \
@ -1063,6 +1066,7 @@ modules_elementary_web_none_module_la_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/src/lib/elementary \
-I$(top_builddir)/src/lib/elementary \
-I$(top_builddir)/src/modules/elementary/web/none \
-DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" \
-DPACKAGE_LIB_DIR=\"$(libdir)\" \
-DELEMENTARY_BUILD \