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 d3f36b4c92..215fe66a28 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -91,7 +91,7 @@ ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
91 APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c widgets.c 91 APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c widgets.c
92endif 92endif
93 93
94SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ 94SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c stubs.c \
95 button-x11.c io.c thread.c $(APPS) $(MENUS) $(FIRMSRCS) 95 button-x11.c io.c thread.c $(APPS) $(MENUS) $(FIRMSRCS)
96 96
97ifdef MPEG_PLAY 97ifdef MPEG_PLAY
@@ -240,6 +240,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
240$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 240$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
241 $(CC) $(CFLAGS) -c $< -o $@ 241 $(CC) $(CFLAGS) -c $< -o $@
242 242
243$(OBJDIR)/stubs.o: ../common/stubs.c
244 $(CC) $(CFLAGS) -c $< -o $@
245
243$(OBJDIR)/usb.o: $(FIRMWAREDIR)/usb.c 246$(OBJDIR)/usb.o: $(FIRMWAREDIR)/usb.c
244 $(CC) $(CFLAGS) -c $< -o $@ 247 $(CC) $(CFLAGS) -c $< -o $@
245 248