summaryrefslogtreecommitdiff
path: root/uisimulator/x11
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2002-10-28 20:07:37 +0000
committerKjell Ericson <kjell@haxx.se>2002-10-28 20:07:37 +0000
commitcacb758a478f5aac7e0f9fb55d4bfb9889cc00a8 (patch)
tree9b4890e827501fcfb5569cfb69eb77a0f934d10d /uisimulator/x11
parentf9a912d8501420e5211c801a129df8a11bbfcf13 (diff)
downloadrockbox-cacb758a478f5aac7e0f9fb55d4bfb9889cc00a8.tar.gz
rockbox-cacb758a478f5aac7e0f9fb55d4bfb9889cc00a8.zip
New file font-player.c is added.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2763 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11')
-rw-r--r--uisimulator/x11/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 6db880945c..5a22f83c8f 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 sysfont.c font.c 84 LCDSRSC = lcd-recorder.c sysfont.c font.c
85else 85else
86 LCDSRSC = lcd-playersim.c lcd-player.c 86 LCDSRSC = lcd-playersim.c lcd-player.c font-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 panic.c ctype.c 89 powermgmt.c panic.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)/font-player.o: ../common/font-player.c
305 $(CC) $(CFLAGS) -c $< -o $@
306
304$(OBJDIR)/lcd-player.o: $(DRIVERS)/lcd-player.c 307$(OBJDIR)/lcd-player.o: $(DRIVERS)/lcd-player.c
305 $(CC) $(CFLAGS) -c $< -o $@ 308 $(CC) $(CFLAGS) -c $< -o $@
306 309