summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/Makefile5
-rw-r--r--uisimulator/x11/Makefile5
2 files changed, 8 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 3885e46e6f..c20e82d07d 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -89,7 +89,7 @@ else
89 LCDSRSC = lcd-playersim.c lcd-player.c lcd-player-charset.c font-player.c 89 LCDSRSC = lcd-playersim.c lcd-player.c lcd-player-charset.c font-player.c
90endif 90endif
91FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c \ 91FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c \
92 sprintf.c 92 sprintf.c buffer.c
93 93
94APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ 94APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \
95 playlist.c wps.c wps-display.c settings.c status.c \ 95 playlist.c wps.c wps-display.c settings.c status.c \
@@ -272,6 +272,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
272$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 272$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
273 $(CC) $(CFLAGS) -c $< -o $@ 273 $(CC) $(CFLAGS) -c $< -o $@
274 274
275$(OBJDIR)/buffer.o: $(FIRMWAREDIR)/buffer.c
276 $(CC) $(CFLAGS) -c $< -o $@
277
275$(OBJDIR)/ctype.o: $(COMMON)/ctype.c 278$(OBJDIR)/ctype.o: $(COMMON)/ctype.c
276 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@ 279 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@
277 280
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 566a475cea..14b204bb62 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -88,7 +88,7 @@ else
88 LCDSRSC = lcd-playersim.c lcd-player.c font-player.c lcd-player-charset.c 88 LCDSRSC = lcd-playersim.c lcd-player.c font-player.c lcd-player-charset.c
89endif 89endif
90FIRMSRCS = $(LCDSRSC) id3.c debug.c usb.c mpeg.c power.c\ 90FIRMSRCS = $(LCDSRSC) id3.c debug.c usb.c mpeg.c power.c\
91 powermgmt.c panic.c mp3data.c sprintf.c 91 powermgmt.c panic.c mp3data.c sprintf.c buffer.c
92 92
93APPS = main.c tree.c menu.c credits.c main_menu.c language.c\ 93APPS = main.c tree.c menu.c credits.c main_menu.c language.c\
94 playlist.c wps.c wps-display.c settings.c status.c icons.c\ 94 playlist.c wps.c wps-display.c settings.c status.c icons.c\
@@ -247,6 +247,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
247$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 247$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
248 $(CC) $(CFLAGS) -c $< -o $@ 248 $(CC) $(CFLAGS) -c $< -o $@
249 249
250$(OBJDIR)/buffer.o: $(FIRMWAREDIR)/buffer.c
251 $(CC) $(CFLAGS) -c $< -o $@
252
250$(OBJDIR)/ctype.o: $(COMMON)/ctype.c 253$(OBJDIR)/ctype.o: $(COMMON)/ctype.c
251 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@ 254 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@
252 255