summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-05-04 09:31:44 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-05-04 09:31:44 +0000
commitce9294476e4cdec77244231221b3380d13b2c8a6 (patch)
treed3931a2147f1150bc94c6a0f4efc536677a0bbfc
parent9d0226fc5fa68fe6bd7a43428fef0ad314750e1d (diff)
downloadrockbox-ce9294476e4cdec77244231221b3380d13b2c8a6.tar.gz
rockbox-ce9294476e4cdec77244231221b3380d13b2c8a6.zip
Added misc.c to the sim builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3650 a1c6a512-1295-4272-9138-f99709370657
-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 \
93 93
94APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ 94APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \
95 playlist.c wps.c wps-display.c settings.c status.c \ 95 playlist.c wps.c wps-display.c settings.c status.c \
96 screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c 96 screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c\
97 misc.c
97 98
98MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c 99MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
99 100
@@ -182,6 +183,9 @@ $(OBJDIR)/snow.o: $(RECDIR)/snow.c
182$(OBJDIR)/main.o: $(APPDIR)/main.c 183$(OBJDIR)/main.o: $(APPDIR)/main.c
183 $(CC) $(APPCFLAGS) -c $< -o $@ 184 $(CC) $(APPCFLAGS) -c $< -o $@
184 185
186$(OBJDIR)/misc.o: $(APPDIR)/misc.c
187 $(CC) $(APPCFLAGS) -c $< -o $@
188
185$(OBJDIR)/wps.o: $(APPDIR)/wps.c 189$(OBJDIR)/wps.o: $(APPDIR)/wps.c
186 $(CC) $(APPCFLAGS) -c $< -o $@ 190 $(CC) $(APPCFLAGS) -c $< -o $@
187 191
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\
92 92
93APPS = main.c tree.c menu.c credits.c main_menu.c language.c\ 93APPS = main.c tree.c menu.c credits.c main_menu.c language.c\
94 playlist.c wps.c wps-display.c settings.c status.c icons.c\ 94 playlist.c wps.c wps-display.c settings.c status.c icons.c\
95 screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c 95 screens.c peakmeter.c viewer.c sleeptimer.c keyboard.c onplay.c\
96 misc.c
96 97
97MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c 98MENUS = games_menu.c demo_menu.c settings_menu.c sound_menu.c
98 99
@@ -172,6 +173,9 @@ $(OBJDIR)/snow.o: $(RECDIR)/snow.c
172$(OBJDIR)/main.o: $(APPDIR)/main.c 173$(OBJDIR)/main.o: $(APPDIR)/main.c
173 $(CC) $(APPCFLAGS) -c $< -o $@ 174 $(CC) $(APPCFLAGS) -c $< -o $@
174 175
176$(OBJDIR)/misc.o: $(APPDIR)/misc.c
177 $(CC) $(APPCFLAGS) -c $< -o $@
178
175$(OBJDIR)/wps.o: $(APPDIR)/wps.c 179$(OBJDIR)/wps.o: $(APPDIR)/wps.c
176 $(CC) $(APPCFLAGS) -c $< -o $@ 180 $(CC) $(APPCFLAGS) -c $< -o $@
177 181