summaryrefslogtreecommitdiff
path: root/uisimulator/win32
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32')
-rw-r--r--uisimulator/win32/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 84ff8c887a..abd730c2a2 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -59,8 +59,8 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
59 59
60APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall 60APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall
61 61
62FIRMSRCS = chartables.c lcd.c power.c sprintf.c id3.c backlight.c usb.c \ 62FIRMSRCS = chartables.c lcd.c power.c sprintf.c id3.c usb.c \
63 mpeg.c powermgmt.c 63 mpeg.c powermgmt.c stubs.c
64 64
65APPS = main.c tree.c menu.c credits.c main_menu.c\ 65APPS = main.c tree.c menu.c credits.c main_menu.c\
66 playlist.c showtext.c wps.c settings.c status.c 66 playlist.c showtext.c wps.c settings.c status.c
@@ -72,7 +72,7 @@ ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
72endif 72endif
73 73
74SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \ 74SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \
75 debug-win32.c kernel.c string-win32.c uisw32.c \ 75 debug-win32.c kernel.c string-win32.c uisw32.c stubs.c \
76 $(APPS) $(MENUS) $(FIRMSRCS) strtok.c 76 $(APPS) $(MENUS) $(FIRMSRCS) strtok.c
77 77
78OBJS := $(SRCS:%.c=$(OBJDIR)/%.o) $(OBJDIR)/uisw32-res.o 78OBJS := $(SRCS:%.c=$(OBJDIR)/%.o) $(OBJDIR)/uisw32-res.o
@@ -188,9 +188,8 @@ $(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
188$(OBJDIR)/strtok.o: $(COMMON)/strtok.c 188$(OBJDIR)/strtok.o: $(COMMON)/strtok.c
189 $(CC) $(APPCFLAGS) -c $< -o $@ 189 $(CC) $(APPCFLAGS) -c $< -o $@
190 190
191$(OBJDIR)/backlight.o: $(FIRMWAREDIR)/backlight.c 191$(OBJDIR)/stubs.o: ../common/stubs.c
192 $(CC) $(APPCFLAGS) -c $< -o $@ 192 $(CC) $(CFLAGS) -c $< -o $@
193
194 193
195# these ones are simulator-specific 194# these ones are simulator-specific
196 195