summaryrefslogtreecommitdiff
path: root/uisimulator/x11/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11/Makefile')
-rw-r--r--uisimulator/x11/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index f6b22e243d..73d46bf9a4 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -73,7 +73,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
73 73
74APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall 74APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall
75 75
76FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c 76FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c
77 77
78APPS = main.c tree.c menu.c credits.c main_menu.c\ 78APPS = main.c tree.c menu.c credits.c main_menu.c\
79 playlist.c showtext.c wps.c settings.c 79 playlist.c showtext.c wps.c settings.c
@@ -84,7 +84,7 @@ ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
84 APPS += tetris.c sokoban.c bounce.c boxes.c icons.c bmp.c 84 APPS += tetris.c sokoban.c bounce.c boxes.c icons.c bmp.c
85endif 85endif
86 86
87SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \ 87SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \
88 button-x11.c io.c thread.c $(APPS) $(MENUS) $(FIRMSRCS) 88 button-x11.c io.c thread.c $(APPS) $(MENUS) $(FIRMSRCS)
89 89
90ifdef MPEG_PLAY 90ifdef MPEG_PLAY
@@ -212,9 +212,15 @@ $(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c
212$(OBJDIR)/debug.o: $(FIRMWAREDIR)/debug.c 212$(OBJDIR)/debug.o: $(FIRMWAREDIR)/debug.c
213 $(CC) $(CFLAGS) -c $< -o $@ 213 $(CC) $(CFLAGS) -c $< -o $@
214 214
215$(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
216 $(CC) $(CFLAGS) -c $< -o $@
217
215$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 218$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
216 $(CC) $(APPCFLAGS) -c $< -o $@ 219 $(CC) $(APPCFLAGS) -c $< -o $@
217 220
221$(OBJDIR)/usb.o: $(FIRMWAREDIR)/usb.c
222 $(CC) $(APPCFLAGS) -c $< -o $@
223
218 224
219# these ones are simulator-specific 225# these ones are simulator-specific
220 226