summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorMats Lidell <matsl@rockbox.org>2002-10-18 09:21:29 +0000
committerMats Lidell <matsl@rockbox.org>2002-10-18 09:21:29 +0000
commit073ca0a8bc7e815ecadb79888a1bdb2365bf3d64 (patch)
tree8d46eeead4915dfde3aec3d0528194c882541b06 /uisimulator
parent786d2c3cb3687a3d44b214ca1f4b7358e16a2b7c (diff)
downloadrockbox-073ca0a8bc7e815ecadb79888a1bdb2365bf3d64.tar.gz
rockbox-073ca0a8bc7e815ecadb79888a1bdb2365bf3d64.zip
Use lcd-player.c in simulator.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2716 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/x11/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 0cf3a66ded..a0ccab0549 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -83,7 +83,7 @@ APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -
83ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 83ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
84 LCDSRSC = lcd-recorder.c 84 LCDSRSC = lcd-recorder.c
85else 85else
86 LCDSRSC = lcd-playersim.c 86 LCDSRSC = lcd-playersim.c lcd-player.c
87endif 87endif
88FIRMSRCS = $(LCDSRSC) sprintf.c id3.c debug.c usb.c mpeg.c power.c\ 88FIRMSRCS = $(LCDSRSC) sprintf.c id3.c debug.c usb.c mpeg.c power.c\
89 powermgmt.c font.c panic.c sysfont.c ctype.c 89 powermgmt.c font.c panic.c sysfont.c ctype.c
@@ -301,6 +301,9 @@ $(OBJDIR)/power.o: $(DRIVERS)/power.c
301$(OBJDIR)/lcd-playersim.o: ../common/lcd-playersim.c 301$(OBJDIR)/lcd-playersim.o: ../common/lcd-playersim.c
302 $(CC) $(CFLAGS) -c $< -o $@ 302 $(CC) $(CFLAGS) -c $< -o $@
303 303
304$(OBJDIR)/lcd-player.o: $(DRIVERS)/lcd-player.c
305 $(CC) $(CFLAGS) -c $< -o $@
306
304# these ones are simulator-specific 307# these ones are simulator-specific
305 308
306$(OBJDIR)/%.o: %.c 309$(OBJDIR)/%.o: %.c