summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/Makefile25
1 files changed, 18 insertions, 7 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile
index 04bb62fbe3..ca3b51482c 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -21,13 +21,24 @@ ifdef SOFTWARECODECS
21endif 21endif
22 22
23# Set up the bitmap libraries 23# Set up the bitmap libraries
24BITMAPLIBS = $(BUILDDIR)/libpluginbitmapsmono.a \ 24BITMAPLIBS =
25 $(BUILDDIR)/libpluginbitmapsnative.a \ 25LINKBITMAPS =
26 $(BUILDDIR)/libpluginbitmapsremotemono.a \ 26ifneq ($(strip $(BMP2RB_MONO)),)
27 $(BUILDDIR)/libpluginbitmapsremotenative.a 27 BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsmono.a
28 28 LINKBITMAPS += -lpluginbitmapsmono
29LINKBITMAPS = -lpluginbitmapsmono -lpluginbitmapsnative \ 29endif
30 -lpluginbitmapsremotemono -lpluginbitmapsremotenative 30ifneq ($(strip $(BMP2RB_NATIVE)),)
31 BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsnative.a
32 LINKBITMAPS += -lpluginbitmapsnative
33endif
34ifneq ($(strip $(BMP2RB_REMOTEMONO)),)
35 BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsremotemono.a
36 LINKBITMAPS += -lpluginbitmapsremotemono
37endif
38ifneq ($(strip $(BMP2RB_REMOTENATIVE)),)
39 BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsremotenative.a
40 LINKBITMAPS += -lpluginbitmapsremotenative
41endif
31 42
32LDS := plugin.lds 43LDS := plugin.lds
33LINKFILE := $(OBJDIR)/pluginlink.lds 44LINKFILE := $(OBJDIR)/pluginlink.lds