summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/common/sim_icons.c2
-rw-r--r--uisimulator/common/stubs.c3
-rw-r--r--uisimulator/win32/Makefile6
-rw-r--r--uisimulator/x11/Makefile6
4 files changed, 10 insertions, 7 deletions
diff --git a/uisimulator/common/sim_icons.c b/uisimulator/common/sim_icons.c
index 8c175e48b1..8676d873bf 100644
--- a/uisimulator/common/sim_icons.c
+++ b/uisimulator/common/sim_icons.c
@@ -172,7 +172,7 @@ void sim_battery_icon(int icon, bool enable)
172}; 172};
173 173
174void 174void
175sim_lcd_icon(int icon, bool enable) 175lcd_icon(int icon, bool enable)
176{ 176{
177 switch (icon) 177 switch (icon)
178 { 178 {
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index f999b2fd95..463cf199bf 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -119,3 +119,6 @@ void lcd_putc(int x, int y, unsigned char ch)
119 (void)ch; 119 (void)ch;
120} 120}
121 121
122void lcd_set_contrast( int x )
123{
124}
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 382e71b886..bd4708ab6a 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -62,7 +62,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
62 62
63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows 63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
64 64
65FIRMSRCS = lcd.c power.c sprintf.c id3.c usb.c \ 65FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \
66 mpeg.c powermgmt.c font.c sysfont.c 66 mpeg.c powermgmt.c font.c sysfont.c
67 67
68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \ 68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \
@@ -166,8 +166,8 @@ $(OBJDIR)/lang.o: $(APPDIR)/lang/$(LANGUAGE).lang
166 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $< 166 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $<
167 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@ 167 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@
168 168
169$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c 169$(OBJDIR)/lcd.o: $(DRIVERS)/lcd-recorder.c
170 $(CC) $(APPCFLAGS) -c $< -o $@ 170 $(CC) $(APPCFLAGS) -DHAVE_LCD_BITMAP -c $< -o $@
171 171
172$(OBJDIR)/power.o: $(DRIVERS)/power.c 172$(OBJDIR)/power.o: $(DRIVERS)/power.c
173 $(CC) $(APPCFLAGS) -c $< -o $@ 173 $(CC) $(APPCFLAGS) -c $< -o $@
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 3f9b999acb..a35778c931 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -77,7 +77,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
77 77
78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall 78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
79 79
80FIRMSRCS = lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\ 80FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\
81 powermgmt.c font.c panic.c sysfont.c 81 powermgmt.c font.c panic.c sysfont.c
82 82
83APPS = main.c tree.c menu.c credits.c main_menu.c\ 83APPS = main.c tree.c menu.c credits.c main_menu.c\
@@ -218,8 +218,8 @@ $(OBJDIR)/lang.o: $(APPDIR)/lang/$(LANGUAGE).lang
218 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $< 218 $(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $<
219 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@ 219 $(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@
220 220
221$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c 221$(OBJDIR)/lcd-recorder.o: $(DRIVERS)/lcd-recorder.c
222 $(CC) $(CFLAGS) -c $< -o $@ 222 $(CC) $(CFLAGS) -DHAVE_LCD_BITMAP -c $< -o $@
223 223
224$(OBJDIR)/sysfont.o: $(FIRMWAREDIR)/fonts/clR6x8.bdf 224$(OBJDIR)/sysfont.o: $(FIRMWAREDIR)/fonts/clR6x8.bdf
225 $(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $< 225 $(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $<