summaryrefslogtreecommitdiffstats
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 8bb495e0c3..3885e46e6f 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -93,7 +93,8 @@ FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c \
APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \
playlist.c wps.c wps-display.c settings.c status.c \
- screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c
+ screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c\
+ misc.c
MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
@@ -182,6 +183,9 @@ $(OBJDIR)/snow.o: $(RECDIR)/snow.c
$(OBJDIR)/main.o: $(APPDIR)/main.c
$(CC) $(APPCFLAGS) -c $< -o $@
+$(OBJDIR)/misc.o: $(APPDIR)/misc.c
+ $(CC) $(APPCFLAGS) -c $< -o $@
+
$(OBJDIR)/wps.o: $(APPDIR)/wps.c
$(CC) $(APPCFLAGS) -c $< -o $@
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 2299be371d..566a475cea 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -92,7 +92,8 @@ FIRMSRCS = $(LCDSRSC) id3.c debug.c usb.c mpeg.c power.c\
APPS = main.c tree.c menu.c credits.c main_menu.c language.c\
playlist.c wps.c wps-display.c settings.c status.c icons.c\
- screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c
+ screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c\
+ misc.c
MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
@@ -172,6 +173,9 @@ $(OBJDIR)/snow.o: $(RECDIR)/snow.c
$(OBJDIR)/main.o: $(APPDIR)/main.c
$(CC) $(APPCFLAGS) -c $< -o $@
+$(OBJDIR)/misc.o: $(APPDIR)/misc.c
+ $(CC) $(APPCFLAGS) -c $< -o $@
+
$(OBJDIR)/wps.o: $(APPDIR)/wps.c
$(CC) $(APPCFLAGS) -c $< -o $@