summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/win32/Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 6803e85d54..eaf9104a81 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -61,7 +61,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
61APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows 61APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
62 62
63FIRMSRCS = chartables.c lcd.c power.c sprintf.c id3.c usb.c \ 63FIRMSRCS = chartables.c lcd.c power.c sprintf.c id3.c usb.c \
64 mpeg.c powermgmt.c 64 mpeg.c powermgmt.c font.c loadfont.c X5x8.c
65 65
66APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \ 66APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \
67 playlist.c showtext.c wps.c wps-display.c settings.c status.c 67 playlist.c showtext.c wps.c wps-display.c settings.c status.c
@@ -181,9 +181,21 @@ $(OBJDIR)/settings.o: $(APPDIR)/settings.c
181$(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c 181$(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c
182 $(CC) $(APPCFLAGS) -c $< -o $@ 182 $(CC) $(APPCFLAGS) -c $< -o $@
183 183
184$(OBJDIR)/font.o: $(FIRMWAREDIR)/id3.c
185 $(CC) $(APPCFLAGS) -c $< -o $@
186
187$(OBJDIR)/loadfont.o: $(FIRMWAREDIR)/loadfont.c
188 $(CC) $(APPCFLAGS) -c $< -o $@
189
190$(OBJDIR)/X5x8.o: $(FIRMWAREDIR)/X5x8.c
191 $(CC) $(APPCFLAGS) -c $< -o $@
192
184$(OBJDIR)/status.o: $(APPDIR)/status.c 193$(OBJDIR)/status.o: $(APPDIR)/status.c
185 $(CC) $(APPCFLAGS) -c $< -o $@ 194 $(CC) $(APPCFLAGS) -c $< -o $@
186 195
196$(OBJDIR)/version.o: $(FIRMWAREDIR)/version.c
197 $(CC) $(CFLAGS) -c $< -o $@
198
187$(OBJDIR)/debug.o: $(FIRMWAREDIR)/debug.c 199$(OBJDIR)/debug.o: $(FIRMWAREDIR)/debug.c
188 $(CC) $(CFLAGS) -c $< -o $@ 200 $(CC) $(CFLAGS) -c $< -o $@
189 201