summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/Makefile5
-rw-r--r--uisimulator/x11/Makefile5
2 files changed, 8 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 05acb9c41c..59ef7f5206 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -103,7 +103,7 @@ FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c mp3_playback.c \
103APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ 103APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \
104 playlist.c wps.c wps-display.c settings.c status.c \ 104 playlist.c wps.c wps-display.c settings.c status.c \
105 screens.c peakmeter.c sleeptimer.c keyboard.c onplay.c\ 105 screens.c peakmeter.c sleeptimer.c keyboard.c onplay.c\
106 misc.c plugin.c playlist_viewer.c bookmark.c 106 misc.c plugin.c playlist_viewer.c bookmark.c filetypes.c
107 107
108MENUS = settings_menu.c sound_menu.c playlist_menu.c 108MENUS = settings_menu.c sound_menu.c playlist_menu.c
109 109
@@ -199,6 +199,9 @@ $(OBJDIR)/tree.o: $(APPDIR)/tree.c
199$(OBJDIR)/onplay.o: $(APPDIR)/onplay.c 199$(OBJDIR)/onplay.o: $(APPDIR)/onplay.c
200 $(CC) $(APPCFLAGS) -c $< -o $@ 200 $(CC) $(APPCFLAGS) -c $< -o $@
201 201
202$(OBJDIR)/filetypes.o: $(APPDIR)/filetypes.c
203 $(CC) $(APPCFLAGS) -c $< -o $@
204
202$(OBJDIR)/playlist.o: $(APPDIR)/playlist.c 205$(OBJDIR)/playlist.o: $(APPDIR)/playlist.c
203 $(CC) $(APPCFLAGS) -c $< -o $@ 206 $(CC) $(APPCFLAGS) -c $< -o $@
204 207
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 6fbc413a3c..65f0b8d5a2 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -102,7 +102,7 @@ FIRMSRCS = $(LCDSRSC) id3.c debug.c usb.c mpeg.c mp3_playback.c power.c\
102APPS = main.c tree.c menu.c credits.c main_menu.c language.c\ 102APPS = main.c tree.c menu.c credits.c main_menu.c language.c\
103 playlist.c wps.c wps-display.c settings.c status.c icons.c\ 103 playlist.c wps.c wps-display.c settings.c status.c icons.c\
104 screens.c peakmeter.c sleeptimer.c keyboard.c onplay.c\ 104 screens.c peakmeter.c sleeptimer.c keyboard.c onplay.c\
105 misc.c plugin.c playlist_viewer.c bookmark.c 105 misc.c plugin.c playlist_viewer.c bookmark.c filetypes.c
106 106
107MENUS = settings_menu.c sound_menu.c playlist_menu.c 107MENUS = settings_menu.c sound_menu.c playlist_menu.c
108 108
@@ -142,6 +142,9 @@ $(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS
142$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw 142$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw
143 $(CC) $(APPCFLAGS) -c $< -o $@ 143 $(CC) $(APPCFLAGS) -c $< -o $@
144 144
145$(OBJDIR)/filetypes.o: $(APPDIR)/filetypes.c
146 $(CC) $(APPCFLAGS) -c $< -o $@
147
145$(OBJDIR)/menu.o: $(APPDIR)/menu.c 148$(OBJDIR)/menu.o: $(APPDIR)/menu.c
146 $(CC) $(APPCFLAGS) -c $< -o $@ 149 $(CC) $(APPCFLAGS) -c $< -o $@
147 150