diff options
author | theuni <theuni-nospam-@xbmc.org> | 2011-04-16 16:50:20 -0400 |
---|---|---|
committer | theuni <theuni-nospam-@xbmc.org> | 2011-04-16 16:50:20 -0400 |
commit | 287cebcb2fef0af22b0e1a55c1508655d8c19674 (patch) | |
tree | 82efe24a4d2659c0f4db80378e1e7afc04a92d9e | |
parent | ad04564f1fc8c7d9214442a5d5b15375ecf49648 (diff) |
fixed: Vis were being built with different sets of rules. Let's just make sure VIS_DIRS is correct and build em all
-rw-r--r-- | Makefile.in | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/Makefile.in b/Makefile.in index bfc9d5191d..cf7faebd25 100644 --- a/Makefile.in +++ b/Makefile.in @@ -380,19 +380,7 @@ exports: dllloader: exports $(MAKE) xbmc/cores/DllLoader/dllloader.a visualizations: exports -ifneq ($(findstring arm,@ARCH@), arm) - $(MAKE) -C xbmc/visualizations/OpenGLSpectrum - $(MAKE) -C xbmc/visualizations/WaveForm - $(MAKE) -C xbmc/visualizations/XBMCProjectM -ifeq ($(findstring osx,@ARCH@), osx) - $(MAKE) -C xbmc/visualizations/iTunes -endif -ifneq (@DISABLE_GOOM@,1) -ifeq ($(or $(findstring powerpc-linux,@ARCH@),$(findstring powerpc64-linux,@ARCH@)),) - $(MAKE) -C xbmc/visualizations/Goom -endif -endif -endif + for d in $(VIS_DIRS); do $(MAKE) -C $$d; done screensavers: exports ifneq ($(findstring arm,@ARCH@), arm) $(MAKE) -C xbmc/screensavers/rsxs-0.9/xbmc |