summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/win32/Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 222b05a118..c49fa89a2d 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -59,19 +59,18 @@ INCLUDES = -I. -I$(DRIVERS) -I$(COMMON) -I$(FIRMWAREDIR) -I$(APPDIR) -I$(MACHINE
59# The true Rockbox Applications should use this include path: 59# The true Rockbox Applications should use this include path:
60APPINCLUDES = -I$(FIRMWAREDIR)/include $(INCLUDES) 60APPINCLUDES = -I$(FIRMWAREDIR)/include $(INCLUDES)
61 61
62ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
63 LCDSRSC = lcd-recorder.c
64else
65 LCDSRSC = lcd-playersim.c lcd-player.c
66endif
67
68DEFINES += -DWIN32 62DEFINES += -DWIN32
69 63
70CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows 64CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
71 65
72APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows 66APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
73 67
74FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \ 68ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
69 LCDSRSC = lcd-recorder.c
70else
71 LCDSRSC = lcd-playersim.c lcd-player.c
72endif
73FIRMSRCS = $(LCDSRSC) power.c sprintf.c id3.c usb.c \
75 mpeg.c powermgmt.c font.c sysfont.c ctype.c 74 mpeg.c powermgmt.c font.c sysfont.c ctype.c
76 75
77APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ 76APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \