diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2015-02-26 12:35:50 +0100 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2015-02-26 13:51:20 +0100 |
commit | 55ba0dfa4ba68b5bb568670b3b1dbd1360935528 (patch) | |
tree | 3b04578f7911f33b3420b66b2cb9a62b58a3f177 /src | |
parent | 009ec26460e8ccc0e5e2b09bb3718d1066209ec3 (diff) |
build: Workaround an automake limitation during parallel install relinking
With this commit I'm finally able to use -j10 for make install on my machine.
During install libtool does some relinking which can result in to broken linking
if the dependencies are not handled correctly. Sadly automake has a problem with
the automatic dependency handling during install with LTLIBRARIES which we use
for all our modules. For the details please see this 4.5 years old bug report:
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328
We are now setting the dependency manually to force automake to the right decision
during install relinking.
Speed improvement itself is not that high (make -j 1 compared to -j10):
real 0m21.410s vs. real 0m17.066s
The bigger benefit is the unified use of MAKEOPTS or normal -j X in all our
build targets. I have seen quite some bug reports where -j was used for install
target when it was used in the build target. Last but not least it helps me to
unify some parts of the jenkins jobs and finally allows me to run distcheck
with -j Which uses install internally and failed before. Which goes down from
real 12m50.349s to real 5m52.120s.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile_Ecore.am | 18 | ||||
-rw-r--r-- | src/Makefile_Ecore_Evas.am | 54 | ||||
-rw-r--r-- | src/Makefile_Ecore_IMF.am | 24 | ||||
-rw-r--r-- | src/Makefile_Edje.am | 10 | ||||
-rw-r--r-- | src/Makefile_Eeze.am | 18 | ||||
-rw-r--r-- | src/Makefile_Eina.am | 15 | ||||
-rw-r--r-- | src/Makefile_Emotion.am | 29 | ||||
-rw-r--r-- | src/Makefile_Ethumb.am | 6 | ||||
-rw-r--r-- | src/Makefile_Evas.am | 222 |
9 files changed, 396 insertions, 0 deletions
diff --git a/src/Makefile_Ecore.am b/src/Makefile_Ecore.am index 10e6a27..da7fa78 100644 --- a/src/Makefile_Ecore.am +++ b/src/Makefile_Ecore.am | |||
@@ -103,6 +103,12 @@ lib_ecore_libecore_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | |||
103 | if WANT_SYSTEMD | 103 | if WANT_SYSTEMD |
104 | ecoresystemdpkgdir = $(libdir)/ecore/system/systemd/$(MODULE_ARCH) | 104 | ecoresystemdpkgdir = $(libdir)/ecore/system/systemd/$(MODULE_ARCH) |
105 | ecoresystemdpkg_LTLIBRARIES = modules/ecore/system/systemd/module.la | 105 | ecoresystemdpkg_LTLIBRARIES = modules/ecore/system/systemd/module.la |
106 | |||
107 | # Workaround for broken parallel install support in automake (relink issue) | ||
108 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
109 | install_ecoresystemdpkgLTLIBRARIES = install-ecoresystemdpkgLTLIBRARIES | ||
110 | $(install_ecoresystemdpkgLTLIBRARIES): install-libLTLIBRARIES | ||
111 | |||
106 | modules_ecore_system_systemd_module_la_SOURCES = \ | 112 | modules_ecore_system_systemd_module_la_SOURCES = \ |
107 | modules/ecore/system/systemd/ecore_system_systemd.c | 113 | modules/ecore/system/systemd/ecore_system_systemd.c |
108 | modules_ecore_system_systemd_module_la_CPPFLAGS = \ | 114 | modules_ecore_system_systemd_module_la_CPPFLAGS = \ |
@@ -123,6 +129,12 @@ endif | |||
123 | if ! HAVE_WIN32 | 129 | if ! HAVE_WIN32 |
124 | ecoreupowerpkgdir = $(libdir)/ecore/system/upower/$(MODULE_ARCH) | 130 | ecoreupowerpkgdir = $(libdir)/ecore/system/upower/$(MODULE_ARCH) |
125 | ecoreupowerpkg_LTLIBRARIES = modules/ecore/system/upower/module.la | 131 | ecoreupowerpkg_LTLIBRARIES = modules/ecore/system/upower/module.la |
132 | |||
133 | # Workaround for broken parallel install support in automake (relink issue) | ||
134 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
135 | install_ecoreupowerpkgLTLIBRARIES = install-ecoreupowerpkgLTLIBRARIES | ||
136 | $(install_ecoreupowerpkgLTLIBRARIES): install-libLTLIBRARIES | ||
137 | |||
126 | modules_ecore_system_upower_module_la_SOURCES = \ | 138 | modules_ecore_system_upower_module_la_SOURCES = \ |
127 | modules/ecore/system/upower/ecore_system_upower.c | 139 | modules/ecore/system/upower/ecore_system_upower.c |
128 | modules_ecore_system_upower_module_la_CPPFLAGS = \ | 140 | modules_ecore_system_upower_module_la_CPPFLAGS = \ |
@@ -144,6 +156,12 @@ endif | |||
144 | if HAVE_TIZEN_CONFIGURATION_MANAGER | 156 | if HAVE_TIZEN_CONFIGURATION_MANAGER |
145 | ecoretizenpkgdir = $(libdir)/ecore/system/tizen/$(MODULE_ARCH) | 157 | ecoretizenpkgdir = $(libdir)/ecore/system/tizen/$(MODULE_ARCH) |
146 | ecoretizenpkg_LTLIBRARIES = modules/ecore/system/tizen/module.la | 158 | ecoretizenpkg_LTLIBRARIES = modules/ecore/system/tizen/module.la |
159 | |||
160 | # Workaround for broken parallel install support in automake (relink issue) | ||
161 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
162 | install_ecoretizenpkgLTLIBRARIES = install-ecoretizenpkgLTLIBRARIES | ||
163 | $(install_ecoretizenpkgLTLIBRARIES): install-libLTLIBRARIES | ||
164 | |||
147 | modules_ecore_system_tizen_module_la_SOURCES = \ | 165 | modules_ecore_system_tizen_module_la_SOURCES = \ |
148 | modules/ecore/system/tizen/ecore_system_tizen.c | 166 | modules/ecore/system/tizen/ecore_system_tizen.c |
149 | modules_ecore_system_tizen_module_la_CPPFLAGS = \ | 167 | modules_ecore_system_tizen_module_la_CPPFLAGS = \ |
diff --git a/src/Makefile_Ecore_Evas.am b/src/Makefile_Ecore_Evas.am index a6cf704..719b051 100644 --- a/src/Makefile_Ecore_Evas.am +++ b/src/Makefile_Ecore_Evas.am | |||
@@ -44,6 +44,12 @@ modules/ecore_evas/engines/extn/ecore_evas_extn_engine.h \ | |||
44 | modules/ecore_evas/engines/extn/ecore_evas_extn_buf.c | 44 | modules/ecore_evas/engines/extn/ecore_evas_extn_buf.c |
45 | ecoreevasengineextnpkgdir = $(libdir)/ecore_evas/engines/extn/$(MODULE_ARCH) | 45 | ecoreevasengineextnpkgdir = $(libdir)/ecore_evas/engines/extn/$(MODULE_ARCH) |
46 | ecoreevasengineextnpkg_LTLIBRARIES = modules/ecore_evas/engines/extn/module.la | 46 | ecoreevasengineextnpkg_LTLIBRARIES = modules/ecore_evas/engines/extn/module.la |
47 | |||
48 | # Workaround for broken parallel install support in automake (relink issue) | ||
49 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
50 | install_ecoreevasengineextnpkgLTLIBRARIES = install-ecoreevasengineextnpkgLTLIBRARIES | ||
51 | $(install_ecoreevasengineextnpkgLTLIBRARIES): install-libLTLIBRARIES | ||
52 | |||
47 | modules_ecore_evas_engines_extn_module_la_SOURCES = $(EXTNSOURCES) | 53 | modules_ecore_evas_engines_extn_module_la_SOURCES = $(EXTNSOURCES) |
48 | modules_ecore_evas_engines_extn_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 54 | modules_ecore_evas_engines_extn_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
49 | @ECORE_EVAS_CFLAGS@ \ | 55 | @ECORE_EVAS_CFLAGS@ \ |
@@ -65,6 +71,12 @@ if BUILD_ECORE_EVAS_X11 | |||
65 | XSOURCES = modules/ecore_evas/engines/x/ecore_evas_x.c | 71 | XSOURCES = modules/ecore_evas/engines/x/ecore_evas_x.c |
66 | ecoreevasenginexpkgdir = $(libdir)/ecore_evas/engines/x/$(MODULE_ARCH) | 72 | ecoreevasenginexpkgdir = $(libdir)/ecore_evas/engines/x/$(MODULE_ARCH) |
67 | ecoreevasenginexpkg_LTLIBRARIES = modules/ecore_evas/engines/x/module.la | 73 | ecoreevasenginexpkg_LTLIBRARIES = modules/ecore_evas/engines/x/module.la |
74 | |||
75 | # Workaround for broken parallel install support in automake (relink issue) | ||
76 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
77 | install_ecoreevasenginexpkgLTLIBRARIES = install-ecoreevasenginexpkgLTLIBRARIES | ||
78 | $(install_ecoreevasenginexpkgLTLIBRARIES): install-libLTLIBRARIES | ||
79 | |||
68 | modules_ecore_evas_engines_x_module_la_SOURCES = $(XSOURCES) | 80 | modules_ecore_evas_engines_x_module_la_SOURCES = $(XSOURCES) |
69 | modules_ecore_evas_engines_x_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 81 | modules_ecore_evas_engines_x_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
70 | @ECORE_EVAS_CFLAGS@ \ | 82 | @ECORE_EVAS_CFLAGS@ \ |
@@ -85,6 +97,12 @@ if BUILD_ECORE_EVAS_OPENGL_COCOA | |||
85 | COCOASOURCES = modules/ecore_evas/engines/cocoa/ecore_evas_cocoa.c | 97 | COCOASOURCES = modules/ecore_evas/engines/cocoa/ecore_evas_cocoa.c |
86 | ecoreevasenginecocoapkgdir = $(libdir)/ecore_evas/engines/cocoa/$(MODULE_ARCH) | 98 | ecoreevasenginecocoapkgdir = $(libdir)/ecore_evas/engines/cocoa/$(MODULE_ARCH) |
87 | ecoreevasenginecocoapkg_LTLIBRARIES = modules/ecore_evas/engines/cocoa/module.la | 99 | ecoreevasenginecocoapkg_LTLIBRARIES = modules/ecore_evas/engines/cocoa/module.la |
100 | |||
101 | # Workaround for broken parallel install support in automake (relink issue) | ||
102 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
103 | install_ecoreevasenginecocoapkgLTLIBRARIES = install-ecoreevasenginecocoapkgLTLIBRARIES | ||
104 | $(install_ecoreevasenginecocoapkgLTLIBRARIES): install-libLTLIBRARIES | ||
105 | |||
88 | modules_ecore_evas_engines_cocoa_module_la_SOURCES = $(COCOASOURCES) | 106 | modules_ecore_evas_engines_cocoa_module_la_SOURCES = $(COCOASOURCES) |
89 | modules_ecore_evas_engines_cocoa_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 107 | modules_ecore_evas_engines_cocoa_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
90 | @ECORE_EVAS_CFLAGS@ \ | 108 | @ECORE_EVAS_CFLAGS@ \ |
@@ -104,6 +122,12 @@ if BUILD_ECORE_EVAS_FB | |||
104 | FBSOURCES = modules/ecore_evas/engines/fb/ecore_evas_fb.c | 122 | FBSOURCES = modules/ecore_evas/engines/fb/ecore_evas_fb.c |
105 | ecoreevasenginefbpkgdir = $(libdir)/ecore_evas/engines/fb/$(MODULE_ARCH) | 123 | ecoreevasenginefbpkgdir = $(libdir)/ecore_evas/engines/fb/$(MODULE_ARCH) |
106 | ecoreevasenginefbpkg_LTLIBRARIES = modules/ecore_evas/engines/fb/module.la | 124 | ecoreevasenginefbpkg_LTLIBRARIES = modules/ecore_evas/engines/fb/module.la |
125 | |||
126 | # Workaround for broken parallel install support in automake (relink issue) | ||
127 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
128 | install_ecoreevasenginefbpkgLTLIBRARIES = install-ecoreevasenginefbpkgLTLIBRARIES | ||
129 | $(install_ecoreevasenginefbpkgLTLIBRARIES): install-libLTLIBRARIES | ||
130 | |||
107 | modules_ecore_evas_engines_fb_module_la_SOURCES = $(FBSOURCES) | 131 | modules_ecore_evas_engines_fb_module_la_SOURCES = $(FBSOURCES) |
108 | modules_ecore_evas_engines_fb_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 132 | modules_ecore_evas_engines_fb_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
109 | @ECORE_EVAS_CFLAGS@ \ | 133 | @ECORE_EVAS_CFLAGS@ \ |
@@ -123,6 +147,12 @@ if BUILD_ECORE_EVAS_PSL1GHT | |||
123 | PSL1GHTSOURCES = modules/ecore_evas/engines/psl1ght/ecore_evas_psl1ght.c | 147 | PSL1GHTSOURCES = modules/ecore_evas/engines/psl1ght/ecore_evas_psl1ght.c |
124 | ecoreevasenginepsl1ghtpkgdir = $(libdir)/ecore_evas/engines/psl1ght/$(MODULE_ARCH) | 148 | ecoreevasenginepsl1ghtpkgdir = $(libdir)/ecore_evas/engines/psl1ght/$(MODULE_ARCH) |
125 | ecoreevasenginepsl1ghtpkg_LTLIBRARIES = modules/ecore_evas/engines/psl1ght/module.la | 149 | ecoreevasenginepsl1ghtpkg_LTLIBRARIES = modules/ecore_evas/engines/psl1ght/module.la |
150 | |||
151 | # Workaround for broken parallel install support in automake (relink issue) | ||
152 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
153 | install_ecoreevasenginepsl1ghtpkgLTLIBRARIES = install-ecoreevasenginepsl1ghtpkgLTLIBRARIES | ||
154 | $(install_ecoreevasenginepsl1ghtpkgLTLIBRARIES): install-libLTLIBRARIES | ||
155 | |||
126 | modules_ecore_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHTSOURCES) | 156 | modules_ecore_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHTSOURCES) |
127 | modules_ecore_evas_engines_psl1ght_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 157 | modules_ecore_evas_engines_psl1ght_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
128 | @ECORE_EVAS_CFLAGS@ \ | 158 | @ECORE_EVAS_CFLAGS@ \ |
@@ -146,6 +176,12 @@ modules/ecore_evas/engines/wayland/ecore_evas_wayland_egl.c \ | |||
146 | modules/ecore_evas/engines/wayland/ecore_evas_wayland_private.h | 176 | modules/ecore_evas/engines/wayland/ecore_evas_wayland_private.h |
147 | ecoreevasenginewaylandpkgdir = $(libdir)/ecore_evas/engines/wayland/$(MODULE_ARCH) | 177 | ecoreevasenginewaylandpkgdir = $(libdir)/ecore_evas/engines/wayland/$(MODULE_ARCH) |
148 | ecoreevasenginewaylandpkg_LTLIBRARIES = modules/ecore_evas/engines/wayland/module.la | 178 | ecoreevasenginewaylandpkg_LTLIBRARIES = modules/ecore_evas/engines/wayland/module.la |
179 | |||
180 | # Workaround for broken parallel install support in automake (relink issue) | ||
181 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
182 | install_ecoreevasenginewaylandpkgLTLIBRARIES = install-ecoreevasenginewaylandpkgLTLIBRARIES | ||
183 | $(install_ecoreevasenginewaylandpkgLTLIBRARIES): install-libLTLIBRARIES | ||
184 | |||
149 | modules_ecore_evas_engines_wayland_module_la_SOURCES = $(WAYLANDSOURCES) | 185 | modules_ecore_evas_engines_wayland_module_la_SOURCES = $(WAYLANDSOURCES) |
150 | modules_ecore_evas_engines_wayland_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 186 | modules_ecore_evas_engines_wayland_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
151 | @ECORE_EVAS_CFLAGS@ \ | 187 | @ECORE_EVAS_CFLAGS@ \ |
@@ -168,6 +204,12 @@ SDLSOURCES = \ | |||
168 | modules/ecore_evas/engines/sdl/ecore_evas_sdl.c | 204 | modules/ecore_evas/engines/sdl/ecore_evas_sdl.c |
169 | ecoreevasenginesdlpkgdir = $(libdir)/ecore_evas/engines/sdl/$(MODULE_ARCH) | 205 | ecoreevasenginesdlpkgdir = $(libdir)/ecore_evas/engines/sdl/$(MODULE_ARCH) |
170 | ecoreevasenginesdlpkg_LTLIBRARIES = modules/ecore_evas/engines/sdl/module.la | 206 | ecoreevasenginesdlpkg_LTLIBRARIES = modules/ecore_evas/engines/sdl/module.la |
207 | |||
208 | # Workaround for broken parallel install support in automake (relink issue) | ||
209 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
210 | install_ecoreevasenginesdlpkgLTLIBRARIES = install-ecoreevasenginesdlpkgLTLIBRARIES | ||
211 | $(install_ecoreevasenginesdlpkgLTLIBRARIES): install-libLTLIBRARIES | ||
212 | |||
171 | modules_ecore_evas_engines_sdl_module_la_SOURCES = $(SDLSOURCES) | 213 | modules_ecore_evas_engines_sdl_module_la_SOURCES = $(SDLSOURCES) |
172 | modules_ecore_evas_engines_sdl_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 214 | modules_ecore_evas_engines_sdl_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
173 | @ECORE_EVAS_CFLAGS@ \ | 215 | @ECORE_EVAS_CFLAGS@ \ |
@@ -189,6 +231,12 @@ WIN32SOURCES = \ | |||
189 | modules/ecore_evas/engines/win32/ecore_evas_win32.c | 231 | modules/ecore_evas/engines/win32/ecore_evas_win32.c |
190 | ecoreevasengineswin32pkgdir = $(libdir)/ecore_evas/engines/win32/$(MODULE_ARCH) | 232 | ecoreevasengineswin32pkgdir = $(libdir)/ecore_evas/engines/win32/$(MODULE_ARCH) |
191 | ecoreevasengineswin32pkg_LTLIBRARIES = modules/ecore_evas/engines/win32/module.la | 233 | ecoreevasengineswin32pkg_LTLIBRARIES = modules/ecore_evas/engines/win32/module.la |
234 | |||
235 | # Workaround for broken parallel install support in automake (relink issue) | ||
236 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
237 | install_ecoreevasengineswin32pkgLTLIBRARIES = install-ecoreevasengineswin32pkgLTLIBRARIES | ||
238 | $(install_ecoreevasengineswin32pkgLTLIBRARIES): install-libLTLIBRARIES | ||
239 | |||
192 | modules_ecore_evas_engines_win32_module_la_SOURCES = $(WIN32SOURCES) | 240 | modules_ecore_evas_engines_win32_module_la_SOURCES = $(WIN32SOURCES) |
193 | modules_ecore_evas_engines_win32_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 241 | modules_ecore_evas_engines_win32_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
194 | @ECORE_EVAS_CFLAGS@ \ | 242 | @ECORE_EVAS_CFLAGS@ \ |
@@ -210,6 +258,12 @@ DRMSOURCES = \ | |||
210 | modules/ecore_evas/engines/drm/ecore_evas_drm.c | 258 | modules/ecore_evas/engines/drm/ecore_evas_drm.c |
211 | ecoreevasenginedrmpkgdir = $(libdir)/ecore_evas/engines/drm/$(MODULE_ARCH) | 259 | ecoreevasenginedrmpkgdir = $(libdir)/ecore_evas/engines/drm/$(MODULE_ARCH) |
212 | ecoreevasenginedrmpkg_LTLIBRARIES = modules/ecore_evas/engines/drm/module.la | 260 | ecoreevasenginedrmpkg_LTLIBRARIES = modules/ecore_evas/engines/drm/module.la |
261 | |||
262 | # Workaround for broken parallel install support in automake (relink issue) | ||
263 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
264 | install_ecoreevasenginedrmpkgLTLIBRARIES = install-ecoreevasenginedrmpkgLTLIBRARIES | ||
265 | $(install_ecoreevasenginedrmpkgLTLIBRARIES): install-libLTLIBRARIES | ||
266 | |||
213 | modules_ecore_evas_engines_drm_module_la_SOURCES = $(DRMSOURCES) | 267 | modules_ecore_evas_engines_drm_module_la_SOURCES = $(DRMSOURCES) |
214 | modules_ecore_evas_engines_drm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 268 | modules_ecore_evas_engines_drm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
215 | @ECORE_EVAS_CFLAGS@ \ | 269 | @ECORE_EVAS_CFLAGS@ \ |
diff --git a/src/Makefile_Ecore_IMF.am b/src/Makefile_Ecore_IMF.am index 7f00e8f..8f227f4 100644 --- a/src/Makefile_Ecore_IMF.am +++ b/src/Makefile_Ecore_IMF.am | |||
@@ -31,6 +31,12 @@ lib_ecore_imf_libecore_imf_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | |||
31 | if BUILD_ECORE_IMF_IBUS | 31 | if BUILD_ECORE_IMF_IBUS |
32 | ecoreimfibuspkgdir = $(libdir)/ecore_imf/modules/ibus/$(MODULE_ARCH) | 32 | ecoreimfibuspkgdir = $(libdir)/ecore_imf/modules/ibus/$(MODULE_ARCH) |
33 | ecoreimfibuspkg_LTLIBRARIES = modules/ecore_imf/ibus/module.la | 33 | ecoreimfibuspkg_LTLIBRARIES = modules/ecore_imf/ibus/module.la |
34 | |||
35 | # Workaround for broken parallel install support in automake (relink issue) | ||
36 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
37 | install_ecoreimfibuspkgLTLIBRARIES = install-ecoreimfibuspkgLTLIBRARIES | ||
38 | $(install_ecoreimfibuspkgLTLIBRARIES): install-libLTLIBRARIES | ||
39 | |||
34 | modules_ecore_imf_ibus_module_la_SOURCES = \ | 40 | modules_ecore_imf_ibus_module_la_SOURCES = \ |
35 | modules/ecore_imf/ibus/ibus_module.c \ | 41 | modules/ecore_imf/ibus/ibus_module.c \ |
36 | modules/ecore_imf/ibus/ibus_imcontext.c \ | 42 | modules/ecore_imf/ibus/ibus_imcontext.c \ |
@@ -58,6 +64,12 @@ endif | |||
58 | if BUILD_ECORE_IMF_SCIM | 64 | if BUILD_ECORE_IMF_SCIM |
59 | ecoreimfscimpkgdir = $(libdir)/ecore_imf/modules/scim/$(MODULE_ARCH) | 65 | ecoreimfscimpkgdir = $(libdir)/ecore_imf/modules/scim/$(MODULE_ARCH) |
60 | ecoreimfscimpkg_LTLIBRARIES = modules/ecore_imf/scim/module.la | 66 | ecoreimfscimpkg_LTLIBRARIES = modules/ecore_imf/scim/module.la |
67 | |||
68 | # Workaround for broken parallel install support in automake (relink issue) | ||
69 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
70 | install_ecoreimfscimpkgLTLIBRARIES = install-ecoreimfscimpkgLTLIBRARIES | ||
71 | $(install_ecoreimfscimpkgLTLIBRARIES): install-libLTLIBRARIES | ||
72 | |||
61 | modules_ecore_imf_scim_module_la_SOURCES = \ | 73 | modules_ecore_imf_scim_module_la_SOURCES = \ |
62 | modules/ecore_imf/scim/scim_module.cpp \ | 74 | modules/ecore_imf/scim/scim_module.cpp \ |
63 | modules/ecore_imf/scim/scim_imcontext.cpp \ | 75 | modules/ecore_imf/scim/scim_imcontext.cpp \ |
@@ -85,6 +97,12 @@ endif | |||
85 | if BUILD_ECORE_IMF_XIM | 97 | if BUILD_ECORE_IMF_XIM |
86 | ecoreimfximpkgdir = $(libdir)/ecore_imf/modules/xim/$(MODULE_ARCH) | 98 | ecoreimfximpkgdir = $(libdir)/ecore_imf/modules/xim/$(MODULE_ARCH) |
87 | ecoreimfximpkg_LTLIBRARIES = modules/ecore_imf/xim/module.la | 99 | ecoreimfximpkg_LTLIBRARIES = modules/ecore_imf/xim/module.la |
100 | |||
101 | # Workaround for broken parallel install support in automake (relink issue) | ||
102 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
103 | install_ecoreimfximpkgLTLIBRARIES = install-ecoreimfximpkgLTLIBRARIES | ||
104 | $(install_ecoreimfximpkgLTLIBRARIES): install-libLTLIBRARIES | ||
105 | |||
88 | modules_ecore_imf_xim_module_la_SOURCES = \ | 106 | modules_ecore_imf_xim_module_la_SOURCES = \ |
89 | modules/ecore_imf/xim/ecore_imf_xim.c | 107 | modules/ecore_imf/xim/ecore_imf_xim.c |
90 | modules_ecore_imf_xim_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 108 | modules_ecore_imf_xim_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
@@ -106,6 +124,12 @@ endif | |||
106 | if BUILD_ECORE_IMF_WAYLAND | 124 | if BUILD_ECORE_IMF_WAYLAND |
107 | ecoreimfwaylandpkgdir = $(libdir)/ecore_imf/modules/wayland/$(MODULE_ARCH) | 125 | ecoreimfwaylandpkgdir = $(libdir)/ecore_imf/modules/wayland/$(MODULE_ARCH) |
108 | ecoreimfwaylandpkg_LTLIBRARIES = modules/ecore_imf/wayland/module.la | 126 | ecoreimfwaylandpkg_LTLIBRARIES = modules/ecore_imf/wayland/module.la |
127 | |||
128 | # Workaround for broken parallel install support in automake (relink issue) | ||
129 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
130 | install_ecoreimfwaylandpkgLTLIBRARIES = install-ecoreimfwaylandpkgLTLIBRARIES | ||
131 | $(install_ecoreimfwaylandpkgLTLIBRARIES): install-libLTLIBRARIES | ||
132 | |||
109 | modules_ecore_imf_wayland_module_la_SOURCES = \ | 133 | modules_ecore_imf_wayland_module_la_SOURCES = \ |
110 | modules/ecore_imf/wayland/wayland_module.c \ | 134 | modules/ecore_imf/wayland/wayland_module.c \ |
111 | modules/ecore_imf/wayland/wayland_imcontext.c \ | 135 | modules/ecore_imf/wayland/wayland_imcontext.c \ |
diff --git a/src/Makefile_Edje.am b/src/Makefile_Edje.am index c7086d6..6fc1d4e 100644 --- a/src/Makefile_Edje.am +++ b/src/Makefile_Edje.am | |||
@@ -89,6 +89,11 @@ if ENABLE_MULTISENSE | |||
89 | # edjemoduleXXXdir = $(libdir)/edje/modules/ | 89 | # edjemoduleXXXdir = $(libdir)/edje/modules/ |
90 | # edjemoduleXXX_LTLIBRARIES = modules/edje/XXX/module.la | 90 | # edjemoduleXXX_LTLIBRARIES = modules/edje/XXX/module.la |
91 | # | 91 | # |
92 | # # Workaround for broken parallel install support in automake (relink issue) | ||
93 | # # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
94 | # install_edjemoduleXXXLTLIBRARIES = install-edjemoduleXXXLTLIBRARIES | ||
95 | # $(install_edjemoduleXXXLTLIBRARIES): install-libLTLIBRARIES | ||
96 | # | ||
92 | # modules_edje_XXX_module_la_SOURCES = modules/edje/XXX/XXX.c | 97 | # modules_edje_XXX_module_la_SOURCES = modules/edje/XXX/XXX.c |
93 | # modules_edje_XXX_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EDJE_COMMON_CPPFLAGS) @XXX_LIBS@ | 98 | # modules_edje_XXX_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EDJE_COMMON_CPPFLAGS) @XXX_LIBS@ |
94 | # modules_edje_XXX_module_la_LIBADD = $(EDJE_COMMON_USER_LIBADD) | 99 | # modules_edje_XXX_module_la_LIBADD = $(EDJE_COMMON_USER_LIBADD) |
@@ -98,6 +103,11 @@ if ENABLE_MULTISENSE | |||
98 | # edjemodulemultisensefactorydir = $(libdir)/edje/modules/multisense_factory/$(MODULE_ARCH) | 103 | # edjemodulemultisensefactorydir = $(libdir)/edje/modules/multisense_factory/$(MODULE_ARCH) |
99 | # edjemodulemultisensefactory_LTLIBRARIES = modules/edje/multisense_factory/module.la | 104 | # edjemodulemultisensefactory_LTLIBRARIES = modules/edje/multisense_factory/module.la |
100 | # | 105 | # |
106 | # # Workaround for broken parallel install support in automake (relink issue) | ||
107 | # # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
108 | # install_edjemodulemultisensefactoryLTLIBRARIES = install-edjemodulemultisensefactoryLTLIBRARIES | ||
109 | # $(install_edjemodulemultisensefactoryLTLIBRARIES): install-libLTLIBRARIES | ||
110 | # | ||
101 | # modules_edje_multisense_factory_module_la_SOURCES = \ | 111 | # modules_edje_multisense_factory_module_la_SOURCES = \ |
102 | # modules/edje/multisense_factory/multisense_factory.c | 112 | # modules/edje/multisense_factory/multisense_factory.c |
103 | # modules_edje_multisense_factory_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 113 | # modules_edje_multisense_factory_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
diff --git a/src/Makefile_Eeze.am b/src/Makefile_Eeze.am index e56a43f..31b0cfb 100644 --- a/src/Makefile_Eeze.am +++ b/src/Makefile_Eeze.am | |||
@@ -58,6 +58,12 @@ lib_eeze_libeeze_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | |||
58 | if HAVE_EEZE_TIZEN | 58 | if HAVE_EEZE_TIZEN |
59 | eezemodulesensortizendir = $(libdir)/eeze/modules/sensor/tizen/$(MODULE_ARCH) | 59 | eezemodulesensortizendir = $(libdir)/eeze/modules/sensor/tizen/$(MODULE_ARCH) |
60 | eezemodulesensortizen_LTLIBRARIES = modules/eeze/sensor/tizen/module.la | 60 | eezemodulesensortizen_LTLIBRARIES = modules/eeze/sensor/tizen/module.la |
61 | |||
62 | # Workaround for broken parallel install support in automake (relink issue) | ||
63 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
64 | install_eezemodulesensortizenLTLIBRARIES = install-eezemodulesensortizenLTLIBRARIES | ||
65 | $(install_eezemodulesensortizenLTLIBRARIES): install-libLTLIBRARIES | ||
66 | |||
61 | modules_eeze_sensor_tizen_module_la_SOURCES = \ | 67 | modules_eeze_sensor_tizen_module_la_SOURCES = \ |
62 | modules/eeze/sensor/tizen/tizen.c | 68 | modules/eeze/sensor/tizen/tizen.c |
63 | modules_eeze_sensor_tizen_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 69 | modules_eeze_sensor_tizen_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
@@ -72,6 +78,12 @@ modules_eeze_sensor_tizen_module_la_LIBTOOLFLAGS = --tag=disable-static | |||
72 | else | 78 | else |
73 | eezemodulesensorfakedir = $(libdir)/eeze/modules/sensor/fake/$(MODULE_ARCH) | 79 | eezemodulesensorfakedir = $(libdir)/eeze/modules/sensor/fake/$(MODULE_ARCH) |
74 | eezemodulesensorfake_LTLIBRARIES = modules/eeze/sensor/fake/module.la | 80 | eezemodulesensorfake_LTLIBRARIES = modules/eeze/sensor/fake/module.la |
81 | |||
82 | # Workaround for broken parallel install support in automake (relink issue) | ||
83 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
84 | install_eezemodulesensorfakeLTLIBRARIES = install-eezemodulesensorfakeLTLIBRARIES | ||
85 | $(install_eezemodulesensorfakeLTLIBRARIES): install-libLTLIBRARIES | ||
86 | |||
75 | modules_eeze_sensor_fake_module_la_SOURCES = modules/eeze/sensor/fake/fake.c | 87 | modules_eeze_sensor_fake_module_la_SOURCES = modules/eeze/sensor/fake/fake.c |
76 | modules_eeze_sensor_fake_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @EEZE_CFLAGS@ | 88 | modules_eeze_sensor_fake_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @EEZE_CFLAGS@ |
77 | modules_eeze_sensor_fake_module_la_LIBADD = @USE_EEZE_LIBS@ | 89 | modules_eeze_sensor_fake_module_la_LIBADD = @USE_EEZE_LIBS@ |
@@ -81,6 +93,12 @@ modules_eeze_sensor_fake_module_la_LIBTOOLFLAGS = --tag=disable-static | |||
81 | endif | 93 | endif |
82 | eezemodulesensorudevdir = $(libdir)/eeze/modules/sensor/udev/$(MODULE_ARCH) | 94 | eezemodulesensorudevdir = $(libdir)/eeze/modules/sensor/udev/$(MODULE_ARCH) |
83 | eezemodulesensorudev_LTLIBRARIES = modules/eeze/sensor/udev/module.la | 95 | eezemodulesensorudev_LTLIBRARIES = modules/eeze/sensor/udev/module.la |
96 | |||
97 | # Workaround for broken parallel install support in automake (relink issue) | ||
98 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
99 | install_eezemodulesensorudevLTLIBRARIES = install-eezemodulesensorudevLTLIBRARIES | ||
100 | $(install_eezemodulesensorudevLTLIBRARIES): install-libLTLIBRARIES | ||
101 | |||
84 | modules_eeze_sensor_udev_module_la_SOURCES = modules/eeze/sensor/udev/udev.c | 102 | modules_eeze_sensor_udev_module_la_SOURCES = modules/eeze/sensor/udev/udev.c |
85 | modules_eeze_sensor_udev_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @EEZE_CFLAGS@ | 103 | modules_eeze_sensor_udev_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @EEZE_CFLAGS@ |
86 | modules_eeze_sensor_udev_module_la_LIBADD = @USE_EEZE_LIBS@ | 104 | modules_eeze_sensor_udev_module_la_LIBADD = @USE_EEZE_LIBS@ |
diff --git a/src/Makefile_Eina.am b/src/Makefile_Eina.am index b60df36..539eadb 100644 --- a/src/Makefile_Eina.am +++ b/src/Makefile_Eina.am | |||
@@ -166,6 +166,11 @@ else | |||
166 | einampchainedpooldir = $(libdir)/eina/modules/mp/chained_pool/$(MODULE_ARCH) | 166 | einampchainedpooldir = $(libdir)/eina/modules/mp/chained_pool/$(MODULE_ARCH) |
167 | einampchainedpool_LTLIBRARIES = modules/eina/mp/chained_pool/chained_pool_module.la | 167 | einampchainedpool_LTLIBRARIES = modules/eina/mp/chained_pool/chained_pool_module.la |
168 | 168 | ||
169 | # Workaround for broken parallel install support in automake (relink issue) | ||
170 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
171 | install_einampchainedpoolLTLIBRARIES = install-einampchainedpoolLTLIBRARIES | ||
172 | $(install_einampchainedpoolLTLIBRARIES): install-libLTLIBRARIES | ||
173 | |||
169 | modules_eina_mp_chained_pool_chained_pool_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) | 174 | modules_eina_mp_chained_pool_chained_pool_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) |
170 | modules_eina_mp_chained_pool_chained_pool_module_la_LIBADD = @USE_EINA_LIBS@ | 175 | modules_eina_mp_chained_pool_chained_pool_module_la_LIBADD = @USE_EINA_LIBS@ |
171 | modules_eina_mp_chained_pool_chained_pool_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ | 176 | modules_eina_mp_chained_pool_chained_pool_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ |
@@ -180,6 +185,11 @@ else | |||
180 | einamponebigdir = $(libdir)/eina/modules/mp/one_big/$(MODULE_ARCH) | 185 | einamponebigdir = $(libdir)/eina/modules/mp/one_big/$(MODULE_ARCH) |
181 | einamponebig_LTLIBRARIES = modules/eina/mp/one_big/one_big_module.la | 186 | einamponebig_LTLIBRARIES = modules/eina/mp/one_big/one_big_module.la |
182 | 187 | ||
188 | # Workaround for broken parallel install support in automake (relink issue) | ||
189 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
190 | install_einamponebigLTLIBRARIES = install-einamponebigLTLIBRARIES | ||
191 | $(install_einamponebigLTLIBRARIES): install-libLTLIBRARIES | ||
192 | |||
183 | modules_eina_mp_one_big_one_big_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) | 193 | modules_eina_mp_one_big_one_big_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) |
184 | modules_eina_mp_one_big_one_big_module_la_LIBADD = @USE_EINA_LIBS@ | 194 | modules_eina_mp_one_big_one_big_module_la_LIBADD = @USE_EINA_LIBS@ |
185 | modules_eina_mp_one_big_one_big_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ | 195 | modules_eina_mp_one_big_one_big_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ |
@@ -194,6 +204,11 @@ else | |||
194 | einamppassthroughdir = $(libdir)/eina/modules/mp/pass_through/$(MODULE_ARCH) | 204 | einamppassthroughdir = $(libdir)/eina/modules/mp/pass_through/$(MODULE_ARCH) |
195 | einamppassthrough_LTLIBRARIES = modules/eina/mp/pass_through/pass_through_module.la | 205 | einamppassthrough_LTLIBRARIES = modules/eina/mp/pass_through/pass_through_module.la |
196 | 206 | ||
207 | # Workaround for broken parallel install support in automake (relink issue) | ||
208 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
209 | install_einamppassthroughLTLIBRARIES = install-einamppassthroughLTLIBRARIES | ||
210 | $(install_einamppassthroughLTLIBRARIES): install-libLTLIBRARIES | ||
211 | |||
197 | modules_eina_mp_pass_through_pass_through_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) | 212 | modules_eina_mp_pass_through_pass_through_module_la_CFLAGS = $(EINA_MODULE_COMMON_CFLAGS) |
198 | modules_eina_mp_pass_through_pass_through_module_la_LIBADD = @USE_EINA_LIBS@ | 213 | modules_eina_mp_pass_through_pass_through_module_la_LIBADD = @USE_EINA_LIBS@ |
199 | modules_eina_mp_pass_through_pass_through_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ | 214 | modules_eina_mp_pass_through_pass_through_module_la_DEPENDENCIES = @USE_EINA_INTERNAL_LIBS@ |
diff --git a/src/Makefile_Emotion.am b/src/Makefile_Emotion.am index 6b16cb9..f3c7352 100644 --- a/src/Makefile_Emotion.am +++ b/src/Makefile_Emotion.am | |||
@@ -66,6 +66,12 @@ else | |||
66 | if EMOTION_BUILD_XINE | 66 | if EMOTION_BUILD_XINE |
67 | emotionmodulexinedir = $(libdir)/emotion/modules/xine/$(MODULE_ARCH) | 67 | emotionmodulexinedir = $(libdir)/emotion/modules/xine/$(MODULE_ARCH) |
68 | emotionmodulexine_LTLIBRARIES = modules/emotion/xine/module.la | 68 | emotionmodulexine_LTLIBRARIES = modules/emotion/xine/module.la |
69 | |||
70 | # Workaround for broken parallel install support in automake (relink issue) | ||
71 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
72 | install_emotionmodulexineLTLIBRARIES = install-emotionmodulexineLTLIBRARIES | ||
73 | $(install_emotionmodulexineLTLIBRARIES): install-libLTLIBRARIES | ||
74 | |||
69 | modules_emotion_xine_module_la_SOURCES = $(EMOTION_XINE_SOURCES) | 75 | modules_emotion_xine_module_la_SOURCES = $(EMOTION_XINE_SOURCES) |
70 | modules_emotion_xine_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 76 | modules_emotion_xine_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
71 | @EMOTION_CFLAGS@ \ | 77 | @EMOTION_CFLAGS@ \ |
@@ -94,6 +100,12 @@ else | |||
94 | if EMOTION_BUILD_GSTREAMER | 100 | if EMOTION_BUILD_GSTREAMER |
95 | emotionmodulegstreamerdir = $(libdir)/emotion/modules/gstreamer/$(MODULE_ARCH) | 101 | emotionmodulegstreamerdir = $(libdir)/emotion/modules/gstreamer/$(MODULE_ARCH) |
96 | emotionmodulegstreamer_LTLIBRARIES = modules/emotion/gstreamer/module.la | 102 | emotionmodulegstreamer_LTLIBRARIES = modules/emotion/gstreamer/module.la |
103 | |||
104 | # Workaround for broken parallel install support in automake (relink issue) | ||
105 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
106 | install_emotionmodulegstreamerLTLIBRARIES = install-emotionmodulegstreamerLTLIBRARIES | ||
107 | $(install_emotionmodulegstreamerLTLIBRARIES): install-libLTLIBRARIES | ||
108 | |||
97 | modules_emotion_gstreamer_module_la_SOURCES = $(EMOTION_GSTREAMER_SOURCES) | 109 | modules_emotion_gstreamer_module_la_SOURCES = $(EMOTION_GSTREAMER_SOURCES) |
98 | modules_emotion_gstreamer_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 110 | modules_emotion_gstreamer_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
99 | @EMOTION_CFLAGS@ \ | 111 | @EMOTION_CFLAGS@ \ |
@@ -126,6 +138,12 @@ else | |||
126 | if EMOTION_BUILD_GSTREAMER1 | 138 | if EMOTION_BUILD_GSTREAMER1 |
127 | emotionmodulegstreamer1dir = $(libdir)/emotion/modules/gstreamer1/$(MODULE_ARCH) | 139 | emotionmodulegstreamer1dir = $(libdir)/emotion/modules/gstreamer1/$(MODULE_ARCH) |
128 | emotionmodulegstreamer1_LTLIBRARIES = modules/emotion/gstreamer1/module.la | 140 | emotionmodulegstreamer1_LTLIBRARIES = modules/emotion/gstreamer1/module.la |
141 | |||
142 | # Workaround for broken parallel install support in automake (relink issue) | ||
143 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
144 | install_emotionmodulegstreamer1LTLIBRARIES = install-emotionmodulegstreamer1LTLIBRARIES | ||
145 | $(install_emotionmodulegstreamer1LTLIBRARIES): install-libLTLIBRARIES | ||
146 | |||
129 | modules_emotion_gstreamer1_module_la_SOURCES = $(EMOTION_GSTREAMER1_SOURCES) | 147 | modules_emotion_gstreamer1_module_la_SOURCES = $(EMOTION_GSTREAMER1_SOURCES) |
130 | modules_emotion_gstreamer1_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 148 | modules_emotion_gstreamer1_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
131 | @EMOTION_CFLAGS@ \ | 149 | @EMOTION_CFLAGS@ \ |
@@ -150,6 +168,12 @@ else | |||
150 | if EMOTION_BUILD_GENERIC | 168 | if EMOTION_BUILD_GENERIC |
151 | emotionmodulegenericdir = $(libdir)/emotion/modules/generic/$(MODULE_ARCH) | 169 | emotionmodulegenericdir = $(libdir)/emotion/modules/generic/$(MODULE_ARCH) |
152 | emotionmodulegeneric_LTLIBRARIES = modules/emotion/generic/module.la | 170 | emotionmodulegeneric_LTLIBRARIES = modules/emotion/generic/module.la |
171 | |||
172 | # Workaround for broken parallel install support in automake (relink issue) | ||
173 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
174 | install_emotionmodulegenericLTLIBRARIES = install-emotionmodulegenericLTLIBRARIES | ||
175 | $(install_emotionmodulegenericLTLIBRARIES): install-libLTLIBRARIES | ||
176 | |||
153 | modules_emotion_generic_module_la_SOURCES = $(EMOTION_GENERIC_SOURCES) | 177 | modules_emotion_generic_module_la_SOURCES = $(EMOTION_GENERIC_SOURCES) |
154 | modules_emotion_generic_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 178 | modules_emotion_generic_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
155 | @EMOTION_CFLAGS@ \ | 179 | @EMOTION_CFLAGS@ \ |
@@ -176,6 +200,11 @@ endif | |||
176 | emotionedjeexternaldir = $(libdir)/edje/modules/emotion/$(MODULE_ARCH) | 200 | emotionedjeexternaldir = $(libdir)/edje/modules/emotion/$(MODULE_ARCH) |
177 | emotionedjeexternal_LTLIBRARIES = edje_external/emotion/module.la | 201 | emotionedjeexternal_LTLIBRARIES = edje_external/emotion/module.la |
178 | 202 | ||
203 | # Workaround for broken parallel install support in automake (relink issue) | ||
204 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
205 | install_emotionedjeexternalLTLIBRARIES = install-emotionedjeexternalLTLIBRARIES | ||
206 | $(install_emotionedjeexternalLTLIBRARIES): install-libLTLIBRARIES | ||
207 | |||
179 | edje_external_emotion_module_la_SOURCES = \ | 208 | edje_external_emotion_module_la_SOURCES = \ |
180 | edje_external/emotion/emotion.c | 209 | edje_external/emotion/emotion.c |
181 | edje_external_emotion_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 210 | edje_external_emotion_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
diff --git a/src/Makefile_Ethumb.am b/src/Makefile_Ethumb.am index 2a6fac6..baa43d8 100644 --- a/src/Makefile_Ethumb.am +++ b/src/Makefile_Ethumb.am | |||
@@ -30,6 +30,12 @@ lib_ethumb_libethumb_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | |||
30 | if BUILD_LOADER_PNG | 30 | if BUILD_LOADER_PNG |
31 | ethumbmoduleemotiondir = $(libdir)/ethumb/modules/emotion/$(MODULE_ARCH) | 31 | ethumbmoduleemotiondir = $(libdir)/ethumb/modules/emotion/$(MODULE_ARCH) |
32 | ethumbmoduleemotion_LTLIBRARIES = modules/ethumb/emotion/module.la | 32 | ethumbmoduleemotion_LTLIBRARIES = modules/ethumb/emotion/module.la |
33 | |||
34 | # Workaround for broken parallel install support in automake (relink issue) | ||
35 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
36 | install_ethumbmoduleemotionLTLIBRARIES = install-ethumbmoduleemotionLTLIBRARIES | ||
37 | $(install_ethumbmoduleemotionLTLIBRARIES): install-libLTLIBRARIES | ||
38 | |||
33 | modules_ethumb_emotion_module_la_SOURCES = \ | 39 | modules_ethumb_emotion_module_la_SOURCES = \ |
34 | modules/ethumb/emotion/emotion.c | 40 | modules/ethumb/emotion/emotion.c |
35 | modules_ethumb_emotion_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 41 | modules_ethumb_emotion_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am index 090e91c..755912e 100644 --- a/src/Makefile_Evas.am +++ b/src/Makefile_Evas.am | |||
@@ -500,6 +500,12 @@ lib_evas_libevas_la_LIBADD += | |||
500 | else | 500 | else |
501 | enginesoftwaregenericpkgdir = $(libdir)/evas/modules/engines/software_generic/$(MODULE_ARCH) | 501 | enginesoftwaregenericpkgdir = $(libdir)/evas/modules/engines/software_generic/$(MODULE_ARCH) |
502 | enginesoftwaregenericpkg_LTLIBRARIES = modules/evas/engines/software_generic/module.la | 502 | enginesoftwaregenericpkg_LTLIBRARIES = modules/evas/engines/software_generic/module.la |
503 | |||
504 | # Workaround for broken parallel install support in automake (relink issue) | ||
505 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
506 | install_enginesoftwaregenericpkgLTLIBRARIES = install-enginesoftwaregenericpkgLTLIBRARIES | ||
507 | $(install_enginesoftwaregenericpkgLTLIBRARIES): install-libLTLIBRARIES | ||
508 | |||
503 | modules_evas_engines_software_generic_module_la_SOURCES = modules/evas/engines/software_generic/evas_engine.c modules/evas/engines/software_generic/Evas_Engine_Software_Generic.h | 509 | modules_evas_engines_software_generic_module_la_SOURCES = modules/evas/engines/software_generic/evas_engine.c modules/evas/engines/software_generic/Evas_Engine_Software_Generic.h |
504 | modules_evas_engines_software_generic_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 510 | modules_evas_engines_software_generic_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
505 | -I$(top_srcdir)/src/lib/evas/include \ | 511 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -522,6 +528,12 @@ lib_evas_libevas_la_SOURCES += $(BUFFER_SOURCES) | |||
522 | else | 528 | else |
523 | enginebufferpkgdir = $(libdir)/evas/modules/engines/buffer/$(MODULE_ARCH) | 529 | enginebufferpkgdir = $(libdir)/evas/modules/engines/buffer/$(MODULE_ARCH) |
524 | enginebufferpkg_LTLIBRARIES = modules/evas/engines/buffer/module.la | 530 | enginebufferpkg_LTLIBRARIES = modules/evas/engines/buffer/module.la |
531 | |||
532 | # Workaround for broken parallel install support in automake (relink issue) | ||
533 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
534 | install_enginebufferpkgLTLIBRARIES = install-enginebufferpkgLTLIBRARIES | ||
535 | $(install_enginebufferpkgLTLIBRARIES): install-libLTLIBRARIES | ||
536 | |||
525 | modules_evas_engines_buffer_module_la_SOURCES = $(BUFFER_SOURCES) | 537 | modules_evas_engines_buffer_module_la_SOURCES = $(BUFFER_SOURCES) |
526 | modules_evas_engines_buffer_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 538 | modules_evas_engines_buffer_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
527 | -I$(top_srcdir)/src/lib/evas/include \ | 539 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -549,6 +561,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_fb_libs@ | |||
549 | else | 561 | else |
550 | enginefbpkgdir = $(libdir)/evas/modules/engines/fb/$(MODULE_ARCH) | 562 | enginefbpkgdir = $(libdir)/evas/modules/engines/fb/$(MODULE_ARCH) |
551 | enginefbpkg_LTLIBRARIES = modules/evas/engines/fb/module.la | 563 | enginefbpkg_LTLIBRARIES = modules/evas/engines/fb/module.la |
564 | |||
565 | # Workaround for broken parallel install support in automake (relink issue) | ||
566 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
567 | install_enginefbpkgLTLIBRARIES = install-enginefbpkgLTLIBRARIES | ||
568 | $(install_enginefbpkgLTLIBRARIES): install-libLTLIBRARIES | ||
569 | |||
552 | modules_evas_engines_fb_module_la_SOURCES = $(FB_SOURCES) | 570 | modules_evas_engines_fb_module_la_SOURCES = $(FB_SOURCES) |
553 | modules_evas_engines_fb_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 571 | modules_evas_engines_fb_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
554 | -I$(top_srcdir)/src/lib/evas/include \ | 572 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -781,6 +799,12 @@ modules_evas_engines_gl_common_libevas_engine_gl_common_la_CPPFLAGS = -I$(top_bu | |||
781 | # The generic backend for GL | 799 | # The generic backend for GL |
782 | engineglgenericpkgdir = $(libdir)/evas/modules/engines/gl_generic/$(MODULE_ARCH) | 800 | engineglgenericpkgdir = $(libdir)/evas/modules/engines/gl_generic/$(MODULE_ARCH) |
783 | engineglgenericpkg_LTLIBRARIES = modules/evas/engines/gl_generic/module.la | 801 | engineglgenericpkg_LTLIBRARIES = modules/evas/engines/gl_generic/module.la |
802 | |||
803 | # Workaround for broken parallel install support in automake (relink issue) | ||
804 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
805 | install_engineglgenericpkgLTLIBRARIES = install-engineglgenericpkgLTLIBRARIES | ||
806 | $(install_engineglgenericpkgLTLIBRARIES): install-libLTLIBRARIES | ||
807 | |||
784 | modules_evas_engines_gl_generic_module_la_SOURCES = $(GL_GENERIC_SOURCES) | 808 | modules_evas_engines_gl_generic_module_la_SOURCES = $(GL_GENERIC_SOURCES) |
785 | modules_evas_engines_gl_generic_module_la_CFLAGS = \ | 809 | modules_evas_engines_gl_generic_module_la_CFLAGS = \ |
786 | -I$(top_builddir)/src/lib/efl \ | 810 | -I$(top_builddir)/src/lib/efl \ |
@@ -830,6 +854,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_gl_cocoa_libs@ | |||
830 | else | 854 | else |
831 | engineglcocoapkgdir = $(libdir)/evas/modules/engines/gl_cocoa/$(MODULE_ARCH) | 855 | engineglcocoapkgdir = $(libdir)/evas/modules/engines/gl_cocoa/$(MODULE_ARCH) |
832 | engineglcocoapkg_LTLIBRARIES = modules/evas/engines/gl_cocoa/module.la | 856 | engineglcocoapkg_LTLIBRARIES = modules/evas/engines/gl_cocoa/module.la |
857 | |||
858 | # Workaround for broken parallel install support in automake (relink issue) | ||
859 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
860 | install_engineglcocoapkgLTLIBRARIES = install-engineglcocoapkgLTLIBRARIES | ||
861 | $(install_engineglcocoapkgLTLIBRARIES): install-libLTLIBRARIES | ||
862 | |||
833 | modules_evas_engines_gl_cocoa_module_la_SOURCES = $(GL_COCOA_SOURCES) | 863 | modules_evas_engines_gl_cocoa_module_la_SOURCES = $(GL_COCOA_SOURCES) |
834 | modules_evas_engines_gl_cocoa_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 864 | modules_evas_engines_gl_cocoa_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
835 | -I$(top_srcdir)/src/lib/evas/include \ | 865 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -867,6 +897,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_gl_sdl_libs@ | |||
867 | else | 897 | else |
868 | engineglsdlpkgdir = $(libdir)/evas/modules/engines/gl_sdl/$(MODULE_ARCH) | 898 | engineglsdlpkgdir = $(libdir)/evas/modules/engines/gl_sdl/$(MODULE_ARCH) |
869 | engineglsdlpkg_LTLIBRARIES = modules/evas/engines/gl_sdl/module.la | 899 | engineglsdlpkg_LTLIBRARIES = modules/evas/engines/gl_sdl/module.la |
900 | |||
901 | # Workaround for broken parallel install support in automake (relink issue) | ||
902 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
903 | install_engineglsdlpkgLTLIBRARIES = install-engineglsdlpkgLTLIBRARIES | ||
904 | $(install_engineglsdlpkgLTLIBRARIES): install-libLTLIBRARIES | ||
905 | |||
870 | modules_evas_engines_gl_sdl_module_la_SOURCES = $(GL_SDL_SOURCES) | 906 | modules_evas_engines_gl_sdl_module_la_SOURCES = $(GL_SDL_SOURCES) |
871 | modules_evas_engines_gl_sdl_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 907 | modules_evas_engines_gl_sdl_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
872 | -I$(top_srcdir)/src/lib/evas/include \ | 908 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -899,6 +935,12 @@ lib_evas_libevas_la_LIBADD += \ | |||
899 | else | 935 | else |
900 | engineglx11pkgdir = $(libdir)/evas/modules/engines/gl_x11/$(MODULE_ARCH) | 936 | engineglx11pkgdir = $(libdir)/evas/modules/engines/gl_x11/$(MODULE_ARCH) |
901 | engineglx11pkg_LTLIBRARIES = modules/evas/engines/gl_x11/module.la | 937 | engineglx11pkg_LTLIBRARIES = modules/evas/engines/gl_x11/module.la |
938 | |||
939 | # Workaround for broken parallel install support in automake (relink issue) | ||
940 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
941 | install_engineglx11pkgLTLIBRARIES = install-engineglx11pkgLTLIBRARIES | ||
942 | $(install_engineglx11pkgLTLIBRARIES): install-libLTLIBRARIES | ||
943 | |||
902 | modules_evas_engines_gl_x11_module_la_SOURCES = $(GL_X11_SOURCES) | 944 | modules_evas_engines_gl_x11_module_la_SOURCES = $(GL_X11_SOURCES) |
903 | modules_evas_engines_gl_x11_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 945 | modules_evas_engines_gl_x11_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
904 | -I$(top_srcdir)/src/lib/evas/include \ | 946 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -931,6 +973,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_psl1ght_libs@ | |||
931 | else | 973 | else |
932 | enginepsl1ghtpkgdir = $(libdir)/evas/modules/engines/psl1ght/$(MODULE_ARCH) | 974 | enginepsl1ghtpkgdir = $(libdir)/evas/modules/engines/psl1ght/$(MODULE_ARCH) |
933 | enginepsl1ghtpkg_LTLIBRARIES = modules/evas/engines/psl1ght/module.la | 975 | enginepsl1ghtpkg_LTLIBRARIES = modules/evas/engines/psl1ght/module.la |
976 | |||
977 | # Workaround for broken parallel install support in automake (relink issue) | ||
978 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
979 | install_enginepsl1ghtpkgLTLIBRARIES = install-enginepsl1ghtpkgLTLIBRARIES | ||
980 | $(install_enginepsl1ghtpkgLTLIBRARIES): install-libLTLIBRARIES | ||
981 | |||
934 | modules_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHT_SOURCES) | 982 | modules_evas_engines_psl1ght_module_la_SOURCES = $(PSL1GHT_SOURCES) |
935 | modules_evas_engines_psl1ght_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 983 | modules_evas_engines_psl1ght_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
936 | -I$(top_srcdir)/src/lib/evas/include \ | 984 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -962,6 +1010,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_software_ddraw_libs@ | |||
962 | else | 1010 | else |
963 | enginesoftwareddrawpkgdir = $(libdir)/evas/modules/engines/software_ddraw/$(MODULE_ARCH) | 1011 | enginesoftwareddrawpkgdir = $(libdir)/evas/modules/engines/software_ddraw/$(MODULE_ARCH) |
964 | enginesoftwareddrawpkg_LTLIBRARIES = modules/evas/engines/software_ddraw/module.la | 1012 | enginesoftwareddrawpkg_LTLIBRARIES = modules/evas/engines/software_ddraw/module.la |
1013 | |||
1014 | # Workaround for broken parallel install support in automake (relink issue) | ||
1015 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1016 | install_enginesoftwareddrawpkgLTLIBRARIES = install-enginesoftwareddrawpkgLTLIBRARIES | ||
1017 | $(install_enginesoftwareddrawpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1018 | |||
965 | modules_evas_engines_software_ddraw_module_la_SOURCES = $(SOFTWARE_DDRAW_SOURCES) | 1019 | modules_evas_engines_software_ddraw_module_la_SOURCES = $(SOFTWARE_DDRAW_SOURCES) |
966 | modules_evas_engines_software_ddraw_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1020 | modules_evas_engines_software_ddraw_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
967 | -I$(top_srcdir)/src/lib/evas/include \ | 1021 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -993,6 +1047,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_software_gdi_libs@ | |||
993 | else | 1047 | else |
994 | enginesoftwaregdipkgdir = $(libdir)/evas/modules/engines/software_gdi/$(MODULE_ARCH) | 1048 | enginesoftwaregdipkgdir = $(libdir)/evas/modules/engines/software_gdi/$(MODULE_ARCH) |
995 | enginesoftwaregdipkg_LTLIBRARIES = modules/evas/engines/software_gdi/module.la | 1049 | enginesoftwaregdipkg_LTLIBRARIES = modules/evas/engines/software_gdi/module.la |
1050 | |||
1051 | # Workaround for broken parallel install support in automake (relink issue) | ||
1052 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1053 | install_enginesoftwaregdipkgLTLIBRARIES = install-enginesoftwaregdipkgLTLIBRARIES | ||
1054 | $(install_enginesoftwaregdipkgLTLIBRARIES): install-libLTLIBRARIES | ||
1055 | |||
996 | modules_evas_engines_software_gdi_module_la_SOURCES = $(SOFTWARE_GDI_SOURCES) | 1056 | modules_evas_engines_software_gdi_module_la_SOURCES = $(SOFTWARE_GDI_SOURCES) |
997 | modules_evas_engines_software_gdi_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1057 | modules_evas_engines_software_gdi_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
998 | -I$(top_srcdir)/src/lib/evas/include \ | 1058 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1061,6 +1121,12 @@ lib_evas_libevas_la_LIBADD += $(SOFTWARE_X11_LIBADD) | |||
1061 | else | 1121 | else |
1062 | enginesoftwarex11pkgdir = $(libdir)/evas/modules/engines/software_x11/$(MODULE_ARCH) | 1122 | enginesoftwarex11pkgdir = $(libdir)/evas/modules/engines/software_x11/$(MODULE_ARCH) |
1063 | enginesoftwarex11pkg_LTLIBRARIES = modules/evas/engines/software_x11/module.la | 1123 | enginesoftwarex11pkg_LTLIBRARIES = modules/evas/engines/software_x11/module.la |
1124 | |||
1125 | # Workaround for broken parallel install support in automake (relink issue) | ||
1126 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1127 | install_enginesoftwarex11pkgLTLIBRARIES = install-enginesoftwarex11pkgLTLIBRARIES | ||
1128 | $(install_enginesoftwarex11pkgLTLIBRARIES): install-libLTLIBRARIES | ||
1129 | |||
1064 | modules_evas_engines_software_x11_module_la_SOURCES = $(SOFTWARE_X11_SOURCES) | 1130 | modules_evas_engines_software_x11_module_la_SOURCES = $(SOFTWARE_X11_SOURCES) |
1065 | modules_evas_engines_software_x11_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(SOFTWARE_X11_CPPFLAGS) | 1131 | modules_evas_engines_software_x11_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(SOFTWARE_X11_CPPFLAGS) |
1066 | modules_evas_engines_software_x11_module_la_LIBADD = @USE_ECORE_X_LIBS@ @USE_EVAS_LIBS@ $(SOFTWARE_X11_LIBADD) | 1132 | modules_evas_engines_software_x11_module_la_LIBADD = @USE_ECORE_X_LIBS@ @USE_EVAS_LIBS@ $(SOFTWARE_X11_LIBADD) |
@@ -1083,6 +1149,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_wayland_egl_libs@ | |||
1083 | else | 1149 | else |
1084 | enginewaylandeglpkgdir = $(libdir)/evas/modules/engines/wayland_egl/$(MODULE_ARCH) | 1150 | enginewaylandeglpkgdir = $(libdir)/evas/modules/engines/wayland_egl/$(MODULE_ARCH) |
1085 | enginewaylandeglpkg_LTLIBRARIES = modules/evas/engines/wayland_egl/module.la | 1151 | enginewaylandeglpkg_LTLIBRARIES = modules/evas/engines/wayland_egl/module.la |
1152 | |||
1153 | # Workaround for broken parallel install support in automake (relink issue) | ||
1154 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1155 | install_enginewaylandeglpkgLTLIBRARIES = install-enginewaylandeglpkgLTLIBRARIES | ||
1156 | $(install_enginewaylandeglpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1157 | |||
1086 | modules_evas_engines_wayland_egl_module_la_SOURCES = $(WAYLAND_EGL_SOURCES) | 1158 | modules_evas_engines_wayland_egl_module_la_SOURCES = $(WAYLAND_EGL_SOURCES) |
1087 | modules_evas_engines_wayland_egl_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1159 | modules_evas_engines_wayland_egl_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1088 | -I$(top_srcdir)/src/lib/evas/include \ | 1160 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1116,6 +1188,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_wayland_shm_libs@ | |||
1116 | else | 1188 | else |
1117 | enginewaylandshmpkgdir = $(libdir)/evas/modules/engines/wayland_shm/$(MODULE_ARCH) | 1189 | enginewaylandshmpkgdir = $(libdir)/evas/modules/engines/wayland_shm/$(MODULE_ARCH) |
1118 | enginewaylandshmpkg_LTLIBRARIES = modules/evas/engines/wayland_shm/module.la | 1190 | enginewaylandshmpkg_LTLIBRARIES = modules/evas/engines/wayland_shm/module.la |
1191 | |||
1192 | # Workaround for broken parallel install support in automake (relink issue) | ||
1193 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1194 | install_enginewaylandshmpkgLTLIBRARIES = install-enginewaylandshmpkgLTLIBRARIES | ||
1195 | $(install_enginewaylandshmpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1196 | |||
1119 | modules_evas_engines_wayland_shm_module_la_SOURCES = $(WAYLAND_SHM_SOURCES) | 1197 | modules_evas_engines_wayland_shm_module_la_SOURCES = $(WAYLAND_SHM_SOURCES) |
1120 | modules_evas_engines_wayland_shm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1198 | modules_evas_engines_wayland_shm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1121 | -I$(top_srcdir)/src/lib/evas/include \ | 1199 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1147,6 +1225,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_drm_libs@ | |||
1147 | else | 1225 | else |
1148 | enginedrmpkgdir = $(libdir)/evas/modules/engines/drm/$(MODULE_ARCH) | 1226 | enginedrmpkgdir = $(libdir)/evas/modules/engines/drm/$(MODULE_ARCH) |
1149 | enginedrmpkg_LTLIBRARIES = modules/evas/engines/drm/module.la | 1227 | enginedrmpkg_LTLIBRARIES = modules/evas/engines/drm/module.la |
1228 | |||
1229 | # Workaround for broken parallel install support in automake (relink issue) | ||
1230 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1231 | install_enginedrmpkgLTLIBRARIES = install-enginedrmpkgLTLIBRARIES | ||
1232 | $(install_enginedrmpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1233 | |||
1150 | modules_evas_engines_drm_module_la_SOURCES = $(DRM_SOURCES) | 1234 | modules_evas_engines_drm_module_la_SOURCES = $(DRM_SOURCES) |
1151 | modules_evas_engines_drm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1235 | modules_evas_engines_drm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1152 | -I$(top_srcdir)/src/lib/evas/include \ | 1236 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1181,6 +1265,12 @@ lib_evas_libevas_la_LIBADD += @evas_engine_gl_drm_libs@ | |||
1181 | else | 1265 | else |
1182 | enginegl_drmpkgdir = $(libdir)/evas/modules/engines/gl_drm/$(MODULE_ARCH) | 1266 | enginegl_drmpkgdir = $(libdir)/evas/modules/engines/gl_drm/$(MODULE_ARCH) |
1183 | enginegl_drmpkg_LTLIBRARIES = modules/evas/engines/gl_drm/module.la | 1267 | enginegl_drmpkg_LTLIBRARIES = modules/evas/engines/gl_drm/module.la |
1268 | |||
1269 | # Workaround for broken parallel install support in automake (relink issue) | ||
1270 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1271 | install_enginegl_drmpkgLTLIBRARIES = install-enginegl_drmpkgLTLIBRARIES | ||
1272 | $(install_enginegl_drmpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1273 | |||
1184 | modules_evas_engines_gl_drm_module_la_SOURCES = $(GL_DRM_SOURCES) | 1274 | modules_evas_engines_gl_drm_module_la_SOURCES = $(GL_DRM_SOURCES) |
1185 | modules_evas_engines_gl_drm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1275 | modules_evas_engines_gl_drm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1186 | -I$(top_srcdir)/src/lib/evas/include \ | 1276 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1335,6 +1425,12 @@ endif | |||
1335 | else | 1425 | else |
1336 | loaderbmppkgdir = $(libdir)/evas/modules/image_loaders/bmp/$(MODULE_ARCH) | 1426 | loaderbmppkgdir = $(libdir)/evas/modules/image_loaders/bmp/$(MODULE_ARCH) |
1337 | loaderbmppkg_LTLIBRARIES = modules/evas/image_loaders/bmp/module.la | 1427 | loaderbmppkg_LTLIBRARIES = modules/evas/image_loaders/bmp/module.la |
1428 | |||
1429 | # Workaround for broken parallel install support in automake (relink issue) | ||
1430 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1431 | install_loaderbmppkgLTLIBRARIES = install-loaderbmppkgLTLIBRARIES | ||
1432 | $(install_loaderbmppkgLTLIBRARIES): install-libLTLIBRARIES | ||
1433 | |||
1338 | modules_evas_image_loaders_bmp_module_la_SOURCES = modules/evas/image_loaders/bmp/evas_image_load_bmp.c | 1434 | modules_evas_image_loaders_bmp_module_la_SOURCES = modules/evas/image_loaders/bmp/evas_image_load_bmp.c |
1339 | modules_evas_image_loaders_bmp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1435 | modules_evas_image_loaders_bmp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1340 | -I$(top_srcdir)/src/lib/evas/include \ | 1436 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1368,6 +1464,12 @@ endif | |||
1368 | else | 1464 | else |
1369 | loaderddspkgdir = $(libdir)/evas/modules/image_loaders/dds/$(MODULE_ARCH) | 1465 | loaderddspkgdir = $(libdir)/evas/modules/image_loaders/dds/$(MODULE_ARCH) |
1370 | loaderddspkg_LTLIBRARIES = modules/evas/image_loaders/dds/module.la | 1466 | loaderddspkg_LTLIBRARIES = modules/evas/image_loaders/dds/module.la |
1467 | |||
1468 | # Workaround for broken parallel install support in automake (relink issue) | ||
1469 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1470 | install_loaderddspkgLTLIBRARIES = install-loaderddspkgLTLIBRARIES | ||
1471 | $(install_loaderddspkgLTLIBRARIES): install-libLTLIBRARIES | ||
1472 | |||
1371 | modules_evas_image_loaders_dds_module_la_SOURCES = \ | 1473 | modules_evas_image_loaders_dds_module_la_SOURCES = \ |
1372 | modules/evas/image_loaders/dds/evas_image_load_dds.c \ | 1474 | modules/evas/image_loaders/dds/evas_image_load_dds.c \ |
1373 | modules/evas/image_loaders/dds/s3tc_decoder.c \ | 1475 | modules/evas/image_loaders/dds/s3tc_decoder.c \ |
@@ -1399,6 +1501,12 @@ endif | |||
1399 | else | 1501 | else |
1400 | loadereetpkgdir = $(libdir)/evas/modules/image_loaders/eet/$(MODULE_ARCH) | 1502 | loadereetpkgdir = $(libdir)/evas/modules/image_loaders/eet/$(MODULE_ARCH) |
1401 | loadereetpkg_LTLIBRARIES = modules/evas/image_loaders/eet/module.la | 1503 | loadereetpkg_LTLIBRARIES = modules/evas/image_loaders/eet/module.la |
1504 | |||
1505 | # Workaround for broken parallel install support in automake (relink issue) | ||
1506 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1507 | install_loadereetpkgLTLIBRARIES = install-loadereetpkgLTLIBRARIES | ||
1508 | $(install_loadereetpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1509 | |||
1402 | modules_evas_image_loaders_eet_module_la_SOURCES = modules/evas/image_loaders/eet/evas_image_load_eet.c | 1510 | modules_evas_image_loaders_eet_module_la_SOURCES = modules/evas/image_loaders/eet/evas_image_load_eet.c |
1403 | modules_evas_image_loaders_eet_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1511 | modules_evas_image_loaders_eet_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1404 | -I$(top_srcdir)/src/lib/evas/include \ | 1512 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1426,6 +1534,12 @@ endif | |||
1426 | else | 1534 | else |
1427 | loadergenericpkgdir = $(libdir)/evas/modules/image_loaders/generic/$(MODULE_ARCH) | 1535 | loadergenericpkgdir = $(libdir)/evas/modules/image_loaders/generic/$(MODULE_ARCH) |
1428 | loadergenericpkg_LTLIBRARIES = modules/evas/image_loaders/generic/module.la | 1536 | loadergenericpkg_LTLIBRARIES = modules/evas/image_loaders/generic/module.la |
1537 | |||
1538 | # Workaround for broken parallel install support in automake (relink issue) | ||
1539 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1540 | install_loadergenericpkgLTLIBRARIES = install-loadergenericpkgLTLIBRARIES | ||
1541 | $(install_loadergenericpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1542 | |||
1429 | modules_evas_image_loaders_generic_module_la_SOURCES = modules/evas/image_loaders/generic/evas_image_load_generic.c | 1543 | modules_evas_image_loaders_generic_module_la_SOURCES = modules/evas/image_loaders/generic/evas_image_load_generic.c |
1430 | modules_evas_image_loaders_generic_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1544 | modules_evas_image_loaders_generic_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1431 | -I$(top_srcdir)/src/lib/evas/include \ | 1545 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1453,6 +1567,12 @@ endif | |||
1453 | else | 1567 | else |
1454 | loadergifpkgdir = $(libdir)/evas/modules/image_loaders/gif/$(MODULE_ARCH) | 1568 | loadergifpkgdir = $(libdir)/evas/modules/image_loaders/gif/$(MODULE_ARCH) |
1455 | loadergifpkg_LTLIBRARIES = modules/evas/image_loaders/gif/module.la | 1569 | loadergifpkg_LTLIBRARIES = modules/evas/image_loaders/gif/module.la |
1570 | |||
1571 | # Workaround for broken parallel install support in automake (relink issue) | ||
1572 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1573 | install_loadergifpkgLTLIBRARIES = install-loadergifpkgLTLIBRARIES | ||
1574 | $(install_loadergifpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1575 | |||
1456 | modules_evas_image_loaders_gif_module_la_SOURCES = modules/evas/image_loaders/gif/evas_image_load_gif.c | 1576 | modules_evas_image_loaders_gif_module_la_SOURCES = modules/evas/image_loaders/gif/evas_image_load_gif.c |
1457 | modules_evas_image_loaders_gif_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1577 | modules_evas_image_loaders_gif_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1458 | -I$(top_srcdir)/src/lib/evas/include \ | 1578 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1480,6 +1600,12 @@ endif | |||
1480 | else | 1600 | else |
1481 | loadericopkgdir = $(libdir)/evas/modules/image_loaders/ico/$(MODULE_ARCH) | 1601 | loadericopkgdir = $(libdir)/evas/modules/image_loaders/ico/$(MODULE_ARCH) |
1482 | loadericopkg_LTLIBRARIES = modules/evas/image_loaders/ico/module.la | 1602 | loadericopkg_LTLIBRARIES = modules/evas/image_loaders/ico/module.la |
1603 | |||
1604 | # Workaround for broken parallel install support in automake (relink issue) | ||
1605 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1606 | install_loadericopkgLTLIBRARIES = install-loadericopkgLTLIBRARIES | ||
1607 | $(install_loadericopkgLTLIBRARIES): install-libLTLIBRARIES | ||
1608 | |||
1483 | modules_evas_image_loaders_ico_module_la_SOURCES = modules/evas/image_loaders/ico/evas_image_load_ico.c | 1609 | modules_evas_image_loaders_ico_module_la_SOURCES = modules/evas/image_loaders/ico/evas_image_load_ico.c |
1484 | modules_evas_image_loaders_ico_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1610 | modules_evas_image_loaders_ico_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1485 | -I$(top_srcdir)/src/lib/evas/include \ | 1611 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1508,6 +1634,12 @@ endif | |||
1508 | else | 1634 | else |
1509 | loaderjpegpkgdir = $(libdir)/evas/modules/image_loaders/jpeg/$(MODULE_ARCH) | 1635 | loaderjpegpkgdir = $(libdir)/evas/modules/image_loaders/jpeg/$(MODULE_ARCH) |
1510 | loaderjpegpkg_LTLIBRARIES = modules/evas/image_loaders/jpeg/module.la | 1636 | loaderjpegpkg_LTLIBRARIES = modules/evas/image_loaders/jpeg/module.la |
1637 | |||
1638 | # Workaround for broken parallel install support in automake (relink issue) | ||
1639 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1640 | install_loaderjpegpkgLTLIBRARIES = install-loaderjpegpkgLTLIBRARIES | ||
1641 | $(install_loaderjpegpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1642 | |||
1511 | modules_evas_image_loaders_jpeg_module_la_SOURCES = modules/evas/image_loaders/jpeg/evas_image_load_jpeg.c | 1643 | modules_evas_image_loaders_jpeg_module_la_SOURCES = modules/evas/image_loaders/jpeg/evas_image_load_jpeg.c |
1512 | modules_evas_image_loaders_jpeg_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1644 | modules_evas_image_loaders_jpeg_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1513 | -I$(top_srcdir)/src/lib/evas/include \ | 1645 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1521,6 +1653,12 @@ modules_evas_image_loaders_jpeg_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | |||
1521 | modules_evas_image_loaders_jpeg_module_la_LIBTOOLFLAGS = --tag=disable-static | 1653 | modules_evas_image_loaders_jpeg_module_la_LIBTOOLFLAGS = --tag=disable-static |
1522 | saverjpegpkgdir = $(libdir)/evas/modules/image_savers/jpeg/$(MODULE_ARCH) | 1654 | saverjpegpkgdir = $(libdir)/evas/modules/image_savers/jpeg/$(MODULE_ARCH) |
1523 | saverjpegpkg_LTLIBRARIES = modules/evas/image_savers/jpeg/module.la | 1655 | saverjpegpkg_LTLIBRARIES = modules/evas/image_savers/jpeg/module.la |
1656 | |||
1657 | # Workaround for broken parallel install support in automake (relink issue) | ||
1658 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1659 | install_saverjpegpkgLTLIBRARIES = install-saverjpegpkgLTLIBRARIES | ||
1660 | $(install_saverjpegpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1661 | |||
1524 | modules_evas_image_savers_jpeg_module_la_SOURCES = modules/evas/image_savers/jpeg/evas_image_save_jpeg.c | 1662 | modules_evas_image_savers_jpeg_module_la_SOURCES = modules/evas/image_savers/jpeg/evas_image_save_jpeg.c |
1525 | modules_evas_image_savers_jpeg_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1663 | modules_evas_image_savers_jpeg_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1526 | -I$(top_srcdir)/src/lib/evas/include \ | 1664 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1548,6 +1686,12 @@ endif | |||
1548 | else | 1686 | else |
1549 | loaderjp2kpkgdir = $(libdir)/evas/modules/image_loaders/jp2k/$(MODULE_ARCH) | 1687 | loaderjp2kpkgdir = $(libdir)/evas/modules/image_loaders/jp2k/$(MODULE_ARCH) |
1550 | loaderjp2kpkg_LTLIBRARIES = modules/evas/image_loaders/jp2k/module.la | 1688 | loaderjp2kpkg_LTLIBRARIES = modules/evas/image_loaders/jp2k/module.la |
1689 | |||
1690 | # Workaround for broken parallel install support in automake (relink issue) | ||
1691 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1692 | install_loaderjp2kpkgLTLIBRARIES = install-loaderjp2kpkgLTLIBRARIES | ||
1693 | $(install_loaderjp2kpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1694 | |||
1551 | modules_evas_image_loaders_jp2k_module_la_SOURCES = modules/evas/image_loaders/jp2k/evas_image_load_jp2k.c | 1695 | modules_evas_image_loaders_jp2k_module_la_SOURCES = modules/evas/image_loaders/jp2k/evas_image_load_jp2k.c |
1552 | modules_evas_image_loaders_jp2k_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1696 | modules_evas_image_loaders_jp2k_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1553 | -I$(top_srcdir)/src/lib/evas/include \ | 1697 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1575,6 +1719,12 @@ endif | |||
1575 | else | 1719 | else |
1576 | loaderpmapspkgdir = $(libdir)/evas/modules/image_loaders/pmaps/$(MODULE_ARCH) | 1720 | loaderpmapspkgdir = $(libdir)/evas/modules/image_loaders/pmaps/$(MODULE_ARCH) |
1577 | loaderpmapspkg_LTLIBRARIES = modules/evas/image_loaders/pmaps/module.la | 1721 | loaderpmapspkg_LTLIBRARIES = modules/evas/image_loaders/pmaps/module.la |
1722 | |||
1723 | # Workaround for broken parallel install support in automake (relink issue) | ||
1724 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1725 | install_loaderpmapspkgLTLIBRARIES = install-loaderpmapspkgLTLIBRARIES | ||
1726 | $(install_loaderpmapspkgLTLIBRARIES): install-libLTLIBRARIES | ||
1727 | |||
1578 | modules_evas_image_loaders_pmaps_module_la_SOURCES = modules/evas/image_loaders/pmaps/evas_image_load_pmaps.c | 1728 | modules_evas_image_loaders_pmaps_module_la_SOURCES = modules/evas/image_loaders/pmaps/evas_image_load_pmaps.c |
1579 | modules_evas_image_loaders_pmaps_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1729 | modules_evas_image_loaders_pmaps_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1580 | -I$(top_srcdir)/src/lib/evas/include \ | 1730 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1602,6 +1752,12 @@ endif | |||
1602 | else | 1752 | else |
1603 | loaderpngpkgdir = $(libdir)/evas/modules/image_loaders/png/$(MODULE_ARCH) | 1753 | loaderpngpkgdir = $(libdir)/evas/modules/image_loaders/png/$(MODULE_ARCH) |
1604 | loaderpngpkg_LTLIBRARIES = modules/evas/image_loaders/png/module.la | 1754 | loaderpngpkg_LTLIBRARIES = modules/evas/image_loaders/png/module.la |
1755 | |||
1756 | # Workaround for broken parallel install support in automake (relink issue) | ||
1757 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1758 | install_loaderpngpkgLTLIBRARIES = install-loaderpngpkgLTLIBRARIES | ||
1759 | $(install_loaderpngpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1760 | |||
1605 | modules_evas_image_loaders_png_module_la_SOURCES = modules/evas/image_loaders/png/evas_image_load_png.c | 1761 | modules_evas_image_loaders_png_module_la_SOURCES = modules/evas/image_loaders/png/evas_image_load_png.c |
1606 | modules_evas_image_loaders_png_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1762 | modules_evas_image_loaders_png_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1607 | -I$(top_srcdir)/src/lib/evas/include \ | 1763 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1616,6 +1772,12 @@ modules_evas_image_loaders_png_module_la_LIBTOOLFLAGS = --tag=disable-static | |||
1616 | 1772 | ||
1617 | saverpngpkgdir = $(libdir)/evas/modules/image_savers/png/$(MODULE_ARCH) | 1773 | saverpngpkgdir = $(libdir)/evas/modules/image_savers/png/$(MODULE_ARCH) |
1618 | saverpngpkg_LTLIBRARIES = modules/evas/image_savers/png/module.la | 1774 | saverpngpkg_LTLIBRARIES = modules/evas/image_savers/png/module.la |
1775 | |||
1776 | # Workaround for broken parallel install support in automake (relink issue) | ||
1777 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1778 | install_saverpngpkgLTLIBRARIES = install-saverpngpkgLTLIBRARIES | ||
1779 | $(install_saverpngpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1780 | |||
1619 | modules_evas_image_savers_png_module_la_SOURCES = modules/evas/image_savers/png/evas_image_save_png.c | 1781 | modules_evas_image_savers_png_module_la_SOURCES = modules/evas/image_savers/png/evas_image_save_png.c |
1620 | modules_evas_image_savers_png_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1782 | modules_evas_image_savers_png_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1621 | -I$(top_srcdir)/src/lib/evas/include \ | 1783 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1643,6 +1805,12 @@ endif | |||
1643 | else | 1805 | else |
1644 | loaderpsdpkgdir = $(libdir)/evas/modules/image_loaders/psd/$(MODULE_ARCH) | 1806 | loaderpsdpkgdir = $(libdir)/evas/modules/image_loaders/psd/$(MODULE_ARCH) |
1645 | loaderpsdpkg_LTLIBRARIES = modules/evas/image_loaders/psd/module.la | 1807 | loaderpsdpkg_LTLIBRARIES = modules/evas/image_loaders/psd/module.la |
1808 | |||
1809 | # Workaround for broken parallel install support in automake (relink issue) | ||
1810 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1811 | install_loaderpsdpkgLTLIBRARIES = install-loaderpsdpkgLTLIBRARIES | ||
1812 | $(install_loaderpsdpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1813 | |||
1646 | modules_evas_image_loaders_psd_module_la_SOURCES = modules/evas/image_loaders/psd/evas_image_load_psd.c | 1814 | modules_evas_image_loaders_psd_module_la_SOURCES = modules/evas/image_loaders/psd/evas_image_load_psd.c |
1647 | modules_evas_image_loaders_psd_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1815 | modules_evas_image_loaders_psd_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1648 | -I$(top_srcdir)/src/lib/evas/include \ | 1816 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1670,6 +1838,12 @@ endif | |||
1670 | else | 1838 | else |
1671 | loadertgapkgdir = $(libdir)/evas/modules/image_loaders/tga/$(MODULE_ARCH) | 1839 | loadertgapkgdir = $(libdir)/evas/modules/image_loaders/tga/$(MODULE_ARCH) |
1672 | loadertgapkg_LTLIBRARIES = modules/evas/image_loaders/tga/module.la | 1840 | loadertgapkg_LTLIBRARIES = modules/evas/image_loaders/tga/module.la |
1841 | |||
1842 | # Workaround for broken parallel install support in automake (relink issue) | ||
1843 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1844 | install_loadertgapkgLTLIBRARIES = install-loadertgapkgLTLIBRARIES | ||
1845 | $(install_loadertgapkgLTLIBRARIES): install-libLTLIBRARIES | ||
1846 | |||
1673 | modules_evas_image_loaders_tga_module_la_SOURCES = modules/evas/image_loaders/tga/evas_image_load_tga.c | 1847 | modules_evas_image_loaders_tga_module_la_SOURCES = modules/evas/image_loaders/tga/evas_image_load_tga.c |
1674 | modules_evas_image_loaders_tga_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1848 | modules_evas_image_loaders_tga_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1675 | -I$(top_srcdir)/src/lib/evas/include \ | 1849 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1697,6 +1871,12 @@ endif | |||
1697 | else | 1871 | else |
1698 | loadertiffpkgdir = $(libdir)/evas/modules/image_loaders/tiff/$(MODULE_ARCH) | 1872 | loadertiffpkgdir = $(libdir)/evas/modules/image_loaders/tiff/$(MODULE_ARCH) |
1699 | loadertiffpkg_LTLIBRARIES = modules/evas/image_loaders/tiff/module.la | 1873 | loadertiffpkg_LTLIBRARIES = modules/evas/image_loaders/tiff/module.la |
1874 | |||
1875 | # Workaround for broken parallel install support in automake (relink issue) | ||
1876 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1877 | install_loadertiffpkgLTLIBRARIES = install-loadertiffpkgLTLIBRARIES | ||
1878 | $(install_loadertiffpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1879 | |||
1700 | modules_evas_image_loaders_tiff_module_la_SOURCES = modules/evas/image_loaders/tiff/evas_image_load_tiff.c | 1880 | modules_evas_image_loaders_tiff_module_la_SOURCES = modules/evas/image_loaders/tiff/evas_image_load_tiff.c |
1701 | modules_evas_image_loaders_tiff_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1881 | modules_evas_image_loaders_tiff_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1702 | -I$(top_srcdir)/src/lib/evas/include \ | 1882 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1711,6 +1891,12 @@ modules_evas_image_loaders_tiff_module_la_LIBTOOLFLAGS = --tag=disable-static | |||
1711 | 1891 | ||
1712 | savertiffpkgdir = $(libdir)/evas/modules/image_savers/tiff/$(MODULE_ARCH) | 1892 | savertiffpkgdir = $(libdir)/evas/modules/image_savers/tiff/$(MODULE_ARCH) |
1713 | savertiffpkg_LTLIBRARIES = modules/evas/image_savers/tiff/module.la | 1893 | savertiffpkg_LTLIBRARIES = modules/evas/image_savers/tiff/module.la |
1894 | |||
1895 | # Workaround for broken parallel install support in automake (relink issue) | ||
1896 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1897 | install_savertiffpkgLTLIBRARIES = install-savertiffpkgLTLIBRARIES | ||
1898 | $(install_savertiffpkgLTLIBRARIES): install-libLTLIBRARIES | ||
1899 | |||
1714 | modules_evas_image_savers_tiff_module_la_SOURCES = modules/evas/image_savers/tiff/evas_image_save_tiff.c | 1900 | modules_evas_image_savers_tiff_module_la_SOURCES = modules/evas/image_savers/tiff/evas_image_save_tiff.c |
1715 | modules_evas_image_savers_tiff_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1901 | modules_evas_image_savers_tiff_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1716 | -I$(top_srcdir)/src/lib/evas/include \ | 1902 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1738,6 +1924,12 @@ endif | |||
1738 | else | 1924 | else |
1739 | loaderwbmppkgdir = $(libdir)/evas/modules/image_loaders/wbmp/$(MODULE_ARCH) | 1925 | loaderwbmppkgdir = $(libdir)/evas/modules/image_loaders/wbmp/$(MODULE_ARCH) |
1740 | loaderwbmppkg_LTLIBRARIES = modules/evas/image_loaders/wbmp/module.la | 1926 | loaderwbmppkg_LTLIBRARIES = modules/evas/image_loaders/wbmp/module.la |
1927 | |||
1928 | # Workaround for broken parallel install support in automake (relink issue) | ||
1929 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1930 | install_loaderwbmppkgLTLIBRARIES = install-loaderwbmppkgLTLIBRARIES | ||
1931 | $(install_loaderwbmppkgLTLIBRARIES): install-libLTLIBRARIES | ||
1932 | |||
1741 | modules_evas_image_loaders_wbmp_module_la_SOURCES = modules/evas/image_loaders/wbmp/evas_image_load_wbmp.c | 1933 | modules_evas_image_loaders_wbmp_module_la_SOURCES = modules/evas/image_loaders/wbmp/evas_image_load_wbmp.c |
1742 | modules_evas_image_loaders_wbmp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1934 | modules_evas_image_loaders_wbmp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1743 | -I$(top_srcdir)/src/lib/evas/include \ | 1935 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1765,6 +1957,12 @@ endif | |||
1765 | else | 1957 | else |
1766 | loaderwebppkgdir = $(libdir)/evas/modules/image_loaders/webp/$(MODULE_ARCH) | 1958 | loaderwebppkgdir = $(libdir)/evas/modules/image_loaders/webp/$(MODULE_ARCH) |
1767 | loaderwebppkg_LTLIBRARIES = modules/evas/image_loaders/webp/module.la | 1959 | loaderwebppkg_LTLIBRARIES = modules/evas/image_loaders/webp/module.la |
1960 | |||
1961 | # Workaround for broken parallel install support in automake (relink issue) | ||
1962 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1963 | install_loaderwebppkgLTLIBRARIES = install-loaderwebppkgLTLIBRARIES | ||
1964 | $(install_loaderwebppkgLTLIBRARIES): install-libLTLIBRARIES | ||
1965 | |||
1768 | modules_evas_image_loaders_webp_module_la_SOURCES = modules/evas/image_loaders/webp/evas_image_load_webp.c | 1966 | modules_evas_image_loaders_webp_module_la_SOURCES = modules/evas/image_loaders/webp/evas_image_load_webp.c |
1769 | modules_evas_image_loaders_webp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1967 | modules_evas_image_loaders_webp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1770 | -I$(top_srcdir)/src/lib/evas/include \ | 1968 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1779,6 +1977,12 @@ modules_evas_image_loaders_webp_module_la_LIBTOOLFLAGS = --tag=disable-static | |||
1779 | 1977 | ||
1780 | saverwebppkgdir = $(libdir)/evas/modules/image_savers/webp/$(MODULE_ARCH) | 1978 | saverwebppkgdir = $(libdir)/evas/modules/image_savers/webp/$(MODULE_ARCH) |
1781 | saverwebppkg_LTLIBRARIES = modules/evas/image_savers/webp/module.la | 1979 | saverwebppkg_LTLIBRARIES = modules/evas/image_savers/webp/module.la |
1980 | |||
1981 | # Workaround for broken parallel install support in automake (relink issue) | ||
1982 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
1983 | install_saverwebppkgLTLIBRARIES = install-saverwebppkgLTLIBRARIES | ||
1984 | $(install_saverwebppkgLTLIBRARIES): install-libLTLIBRARIES | ||
1985 | |||
1782 | modules_evas_image_savers_webp_module_la_SOURCES = modules/evas/image_savers/webp/evas_image_save_webp.c | 1986 | modules_evas_image_savers_webp_module_la_SOURCES = modules/evas/image_savers/webp/evas_image_save_webp.c |
1783 | modules_evas_image_savers_webp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 1987 | modules_evas_image_savers_webp_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1784 | -I$(top_srcdir)/src/lib/evas/include \ | 1988 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1806,6 +2010,12 @@ endif | |||
1806 | else | 2010 | else |
1807 | loaderxpmpkgdir = $(libdir)/evas/modules/image_loaders/xpm/$(MODULE_ARCH) | 2011 | loaderxpmpkgdir = $(libdir)/evas/modules/image_loaders/xpm/$(MODULE_ARCH) |
1808 | loaderxpmpkg_LTLIBRARIES = modules/evas/image_loaders/xpm/module.la | 2012 | loaderxpmpkg_LTLIBRARIES = modules/evas/image_loaders/xpm/module.la |
2013 | |||
2014 | # Workaround for broken parallel install support in automake (relink issue) | ||
2015 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
2016 | install_loaderxpmpkgLTLIBRARIES = install-loaderxpmpkgLTLIBRARIES | ||
2017 | $(install_loaderxpmpkgLTLIBRARIES): install-libLTLIBRARIES | ||
2018 | |||
1809 | modules_evas_image_loaders_xpm_module_la_SOURCES = modules/evas/image_loaders/xpm/evas_image_load_xpm.c | 2019 | modules_evas_image_loaders_xpm_module_la_SOURCES = modules/evas/image_loaders/xpm/evas_image_load_xpm.c |
1810 | modules_evas_image_loaders_xpm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | 2020 | modules_evas_image_loaders_xpm_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ |
1811 | -I$(top_srcdir)/src/lib/evas/include \ | 2021 | -I$(top_srcdir)/src/lib/evas/include \ |
@@ -1871,6 +2081,12 @@ endif | |||
1871 | else | 2081 | else |
1872 | loadertgvpkgdir = $(libdir)/evas/modules/image_loaders/tgv/$(MODULE_ARCH) | 2082 | loadertgvpkgdir = $(libdir)/evas/modules/image_loaders/tgv/$(MODULE_ARCH) |
1873 | loadertgvpkg_LTLIBRARIES = modules/evas/image_loaders/tgv/module.la | 2083 | loadertgvpkg_LTLIBRARIES = modules/evas/image_loaders/tgv/module.la |
2084 | |||
2085 | # Workaround for broken parallel install support in automake (relink issue) | ||
2086 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
2087 | install_loadertgvpkgLTLIBRARIES = install-loadertgvpkgLTLIBRARIES | ||
2088 | $(install_loadertgvpkgLTLIBRARIES): install-libLTLIBRARIES | ||
2089 | |||
1874 | modules_evas_image_loaders_tgv_module_la_SOURCES = \ | 2090 | modules_evas_image_loaders_tgv_module_la_SOURCES = \ |
1875 | modules/evas/image_loaders/tgv/evas_image_load_tgv.c \ | 2091 | modules/evas/image_loaders/tgv/evas_image_load_tgv.c \ |
1876 | static_libs/rg_etc/rg_etc1.c \ | 2092 | static_libs/rg_etc/rg_etc1.c \ |
@@ -1901,6 +2117,12 @@ modules_evas_image_loaders_tgv_module_la_LIBTOOLFLAGS = --tag=disable-static | |||
1901 | 2117 | ||
1902 | savertgvpkgdir = $(libdir)/evas/modules/image_savers/tgv/$(MODULE_ARCH) | 2118 | savertgvpkgdir = $(libdir)/evas/modules/image_savers/tgv/$(MODULE_ARCH) |
1903 | savertgvpkg_LTLIBRARIES = modules/evas/image_savers/tgv/module.la | 2119 | savertgvpkg_LTLIBRARIES = modules/evas/image_savers/tgv/module.la |
2120 | |||
2121 | # Workaround for broken parallel install support in automake (relink issue) | ||
2122 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
2123 | install_savertgvpkgLTLIBRARIES = install-savertgvpkgLTLIBRARIES | ||
2124 | $(install_savertgvpkgLTLIBRARIES): install-libLTLIBRARIES | ||
2125 | |||
1904 | modules_evas_image_savers_tgv_module_la_SOURCES = \ | 2126 | modules_evas_image_savers_tgv_module_la_SOURCES = \ |
1905 | modules/evas/image_savers/tgv/evas_image_save_tgv.c \ | 2127 | modules/evas/image_savers/tgv/evas_image_save_tgv.c \ |
1906 | static_libs/rg_etc/rg_etc1.c \ | 2128 | static_libs/rg_etc/rg_etc1.c \ |