summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/x11/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 6db8809..5a22f83 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -83,7 +83,7 @@ APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -
ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
LCDSRSC = lcd-recorder.c sysfont.c font.c
else
- LCDSRSC = lcd-playersim.c lcd-player.c
+ LCDSRSC = lcd-playersim.c lcd-player.c font-player.c
endif
FIRMSRCS = $(LCDSRSC) sprintf.c id3.c debug.c usb.c mpeg.c power.c\
powermgmt.c panic.c ctype.c
@@ -301,6 +301,9 @@ $(OBJDIR)/power.o: $(DRIVERS)/power.c
$(OBJDIR)/lcd-playersim.o: ../common/lcd-playersim.c
$(CC) $(CFLAGS) -c $< -o $@
+$(OBJDIR)/font-player.o: ../common/font-player.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
$(OBJDIR)/lcd-player.o: $(DRIVERS)/lcd-player.c
$(CC) $(CFLAGS) -c $< -o $@