diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2014-10-07 20:08:48 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2014-10-07 20:08:48 -0400 |
commit | 6c0596f980e7e3dab450cb3f3037cad76821b909 (patch) | |
tree | 1f585e9de022f5b81aa85610a74e1732c0f616d9 /src/enlightenment/Makefile.mk | |
parent | 6e9fd9a23d98db0f0fa1024adbefaae050636c28 (diff) |
fix e module
Diffstat (limited to 'src/enlightenment/Makefile.mk')
-rw-r--r-- | src/enlightenment/Makefile.mk | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/src/enlightenment/Makefile.mk b/src/enlightenment/Makefile.mk index 71fc9c1..94c13ad 100644 --- a/src/enlightenment/Makefile.mk +++ b/src/enlightenment/Makefile.mk | |||
@@ -6,28 +6,35 @@ $(wildcard src/enlightenment/images/*.png) | |||
6 | 6 | ||
7 | 7 | ||
8 | if MPDULE | 8 | if MPDULE |
9 | pkgdir = $(datadir)/$(MODULE_ARCH) | 9 | pkgdir = $(e_module_dir)/empdule/$(E_MODULE_ARCH) |
10 | pkg_LTLIBRARIES = src/enlightenment/module.la | 10 | pkg_LTLIBRARIES = src/enlightenment/module.la |
11 | 11 | ||
12 | src_enlightenment_module_la_SOURCES = \ | 12 | src_enlightenment_module_la_SOURCES = \ |
13 | src/enlightenment/e_mod_main.c \ | 13 | src/enlightenment/e_mod_main.c \ |
14 | src/enlightenment/e_mod_main.h \ | 14 | src/enlightenment/e_mod_main.h \ |
15 | src/enlightenment/e_mod_config.c | 15 | src/enlightenment/e_mod_config.c \ |
16 | 16 | $(ELDBUS_SRC) | |
17 | src_enlightenment_module_la_LIBADD = @E_LIBS@ | 17 | |
18 | src_enlightenment_module_la_CPPFLAGS = \ | ||
19 | -I$(top_builddir) \ | ||
20 | -I$(top_srcdir)/src/bin \ | ||
21 | @E_CFLAGS@ \ | ||
22 | @EFL_CFLAGS@ | ||
23 | src_enlightenment_module_la_LIBADD = @E_LIBS@ @EFL_LIBS@ | ||
18 | src_enlightenment_module_la_LDFLAGS = -module -avoid-version | 24 | src_enlightenment_module_la_LDFLAGS = -module -avoid-version |
19 | 25 | ||
20 | filesdir = $(datadir) | 26 | filesdir = $(e_module_dir)/empdule |
21 | files_DATA = \ | 27 | files_DATA = \ |
22 | src/enlightenment/e-module-empdule.edj | 28 | src/enlightenment/e-module-empdule.edj \ |
23 | src/enlightenment/module.desktop | 29 | src/enlightenment/module.desktop \ |
24 | src/enlightenment/empdule.edj | 30 | src/enlightenment/empdule.edj |
25 | 31 | ||
32 | module.desktop: module.desktop.in | ||
26 | 33 | ||
27 | E_EDJE_FLAGS = -v \ | 34 | E_EDJE_FLAGS = -v \ |
28 | -id $(top_srcdir)/src/enlightenment/images | 35 | -id $(top_srcdir)/src/enlightenment/images |
29 | 36 | ||
30 | src/enlightenment/%.edj: src/enlightenment/%.edc | 37 | src/enlightenment/%.edj: src/enlightenment/%.edc |
31 | @EDJE_CC@ $(E_EDJE_FLAGS) $< $@ | 38 | @edje_cc@ $(E_EDJE_FLAGS) $< $@ |
32 | 39 | ||
33 | endif | 40 | endif |