diff options
author | elupus <elupus@xbmc.org> | 2011-07-23 20:32:29 +0200 |
---|---|---|
committer | elupus <elupus@xbmc.org> | 2011-07-23 20:57:08 +0200 |
commit | 92153171ecc9bf35ff20f593f0ac27132befc4a2 (patch) | |
tree | f87c115526fa8e1cce133fd4fbd3fad22555d5ac /Makefile.in | |
parent | 2e2229a0711af5027e4c3030f58e3e3df0d88ed3 (diff) |
fixed: don't spawn make in same directory to resolve deps
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 9b3b6c8a58..717b05c0b4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -361,12 +361,9 @@ endif lib/xbmc-dll-symbols/dll-symbols.a: force $(MAKE) -C lib/xbmc-dll-symbols -exports: - $(MAKE) xbmc/cores/DllLoader/exports/exports.a - $(MAKE) xbmc/cores/DllLoader/exports/util/exports_utils.a +exports: xbmc/cores/DllLoader/exports/exports.a xbmc/cores/DllLoader/exports/util/exports_utils.a $(MAKE) -C xbmc/cores/DllLoader/exports wrapper.def -dllloader: exports - $(MAKE) xbmc/cores/DllLoader/dllloader.a +dllloader: exports xbmc/cores/DllLoader/dllloader.a visualizations: exports for d in $(VIS_DIRS); do $(MAKE) -C $$d; done screensavers: exports |