diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2012-07-09 18:01:54 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-08 18:59:21 -0400 |
commit | 72fea1846909df7faec34d439c9711867ca024ca (patch) | |
tree | 050575026b08810e6d76b1f3490e1e2f22131847 /Makefile.in | |
parent | dd74556d96d89cf4ff4cd7e60e97cf2351c5e981 (diff) |
[droid] fix parallel build for gles
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 7ab59f1141..829625f458 100755 --- a/Makefile.in +++ b/Makefile.in @@ -97,6 +97,7 @@ endif ifeq (@USE_OPENGLES@,1) DIRECTORY_ARCHIVES += xbmc/rendering/gles/rendering_gles.a DIRECTORY_ARCHIVES += xbmc/windowing/egl/windowing_egl.a +DIRECTORY_ARCHIVES += xbmc/visualizations/EGLHelpers/eglhelpers.a endif ifeq ($(findstring osx,@ARCH@),osx) @@ -272,7 +273,14 @@ exports: xbmc/cores/DllLoader/exports/exports.a xbmc/cores/DllLoader/exports/uti $(MAKE) -C xbmc/cores/DllLoader/exports wrapper.def dllloader: exports xbmc/cores/DllLoader/dllloader.a -$(VIS_DIRS) $(SS_DIRS): force exports +ifeq (@USE_OPENGLES@,1) +EGLHELPERS=xbmc/visualizations/EGLHelpers/eglhelpers.a +endif + +$(VIS_DIRS): force exports $(EGLHELPERS) + $(MAKE) -C $@ + +$(SS_DIRS): force exports $(MAKE) -C $@ visualizations: $(VIS_DIRS) |