summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/x11/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 930de50d7b..66c900050f 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -77,7 +77,12 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
77 77
78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall 78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
79 79
80FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\ 80ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
81 LCDSRSC = lcd-recorder.c
82else
83 LCDSRSC = lcd-playersim.c
84endif
85FIRMSRCS = $(LCDSRSC) sprintf.c id3.c debug.c usb.c mpeg.c power.c\
81 powermgmt.c font.c panic.c sysfont.c ctype.c 86 powermgmt.c font.c panic.c sysfont.c ctype.c
82 87
83APPS = main.c tree.c menu.c credits.c main_menu.c language.c\ 88APPS = main.c tree.c menu.c credits.c main_menu.c language.c\
@@ -287,6 +292,8 @@ $(OBJDIR)/ajf.o: $(FIRMWAREDIR)/ajf.c
287$(OBJDIR)/power.o: $(DRIVERS)/power.c 292$(OBJDIR)/power.o: $(DRIVERS)/power.c
288 $(CC) $(CFLAGS) -c $< -o $@ 293 $(CC) $(CFLAGS) -c $< -o $@
289 294
295$(OBJDIR)/lcd-playersim.o: ../common/lcd-playersim.c
296 $(CC) $(CFLAGS) -DHAVE_LCD_BITMAP -c $< -o $@
290 297
291# these ones are simulator-specific 298# these ones are simulator-specific
292 299