summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/win32/Makefile6
-rw-r--r--uisimulator/x11/Makefile6
2 files changed, 10 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 1dfa881894..c3a585e64e 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -64,7 +64,8 @@ FIRMSRCS = lcd.c power.c sprintf.c id3.c usb.c \
64 mpeg.c powermgmt.c font.c loadfont.c X5x8.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 \
68 lang.c
68 69
69MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c 70MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
70 71
@@ -160,6 +161,9 @@ $(OBJDIR)/playlist.o: $(APPDIR)/playlist.c
160$(OBJDIR)/showtext.o: $(APPDIR)/showtext.c 161$(OBJDIR)/showtext.o: $(APPDIR)/showtext.c
161 $(CC) $(APPCFLAGS) -c $< -o $@ 162 $(CC) $(APPCFLAGS) -c $< -o $@
162 163
164$(OBJDIR)/lang.o: $(APPDIR)/lang.c
165 $(CC) $(APPCFLAGS) -c $< -o $@
166
163$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c 167$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c
164 $(CC) $(APPCFLAGS) -c $< -o $@ 168 $(CC) $(APPCFLAGS) -c $< -o $@
165 169
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 9bebeac067..2f74394d1f 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -80,7 +80,8 @@ FIRMSRCS = lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\
80 powermgmt.c font.c X5x8.c loadfont.c panic.c 80 powermgmt.c font.c X5x8.c loadfont.c panic.c
81 81
82APPS = main.c tree.c menu.c credits.c main_menu.c\ 82APPS = main.c tree.c menu.c credits.c main_menu.c\
83 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c 83 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c \
84 lang.c
84 85
85MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c 86MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
86 87
@@ -213,6 +214,9 @@ $(OBJDIR)/playlist.o: $(APPDIR)/playlist.c
213$(OBJDIR)/showtext.o: $(APPDIR)/showtext.c 214$(OBJDIR)/showtext.o: $(APPDIR)/showtext.c
214 $(CC) $(APPCFLAGS) -c $< -o $@ 215 $(CC) $(APPCFLAGS) -c $< -o $@
215 216
217$(OBJDIR)/lang.o: $(APPDIR)/lang.c
218 $(CC) $(APPCFLAGS) -c $< -o $@
219
216$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c 220$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c
217 $(CC) $(CFLAGS) -c $< -o $@ 221 $(CC) $(CFLAGS) -c $< -o $@
218 222