summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorMats Lidell <matsl@rockbox.org>2002-10-11 11:13:03 +0000
committerMats Lidell <matsl@rockbox.org>2002-10-11 11:13:03 +0000
commit2aab7cc4b520430b6709b42281ed17045fc09be9 (patch)
treee6380cf3adf05107be2786957a33ce758c4731bb /uisimulator
parentd5fd94d6936e4d08368e03b91ee3e2150b8271b2 (diff)
downloadrockbox-2aab7cc4b520430b6709b42281ed17045fc09be9.tar.gz
rockbox-2aab7cc4b520430b6709b42281ed17045fc09be9.zip
Player simulator uses lcd-playersim for display.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2581 a1c6a512-1295-4272-9138-f99709370657
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