summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile24
1 files changed, 18 insertions, 6 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 3f106d10f6..1f9ab284fa 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -23,12 +23,24 @@ CODECS=build-codecs
23endif 23endif
24 24
25# Set up the bitmap libraries 25# Set up the bitmap libraries
26BITMAPLIBS = $(BUILDDIR)/libbitmapsmono.a \ 26BITMAPLIBS =
27 $(BUILDDIR)/libbitmapsnative.a \ 27LINKBITMAPS =
28 $(BUILDDIR)/libbitmapsremotemono.a \ 28ifneq ($(strip $(BMP2RB_MONO)),)
29 $(BUILDDIR)/libbitmapsremotenative.a 29 BITMAPLIBS += $(BUILDDIR)/libbitmapsmono.a
30 30 LINKBITMAPS += -lbitmapsmono
31LINKBITMAPS = -lbitmapsmono -lbitmapsnative -lbitmapsremotemono -lbitmapsremotenative 31endif
32ifneq ($(strip $(BMP2RB_NATIVE)),)
33 BITMAPLIBS += $(BUILDDIR)/libbitmapsnative.a
34 LINKBITMAPS += -lbitmapsnative
35endif
36ifneq ($(strip $(BMP2RB_REMOTEMONO)),)
37 BITMAPLIBS += $(BUILDDIR)/libbitmapsremotemono.a
38 LINKBITMAPS += -lbitmapsremotemono
39endif
40ifneq ($(strip $(BMP2RB_REMOTENATIVE)),)
41 BITMAPLIBS += $(BUILDDIR)/libbitmapsremotenative.a
42 LINKBITMAPS += -lbitmapsremotenative
43endif
32 44
33# This sets up 'SRC' based on the files mentioned in SOURCES 45# This sets up 'SRC' based on the files mentioned in SOURCES
34include $(TOOLSDIR)/makesrc.inc 46include $(TOOLSDIR)/makesrc.inc