summaryrefslogtreecommitdiff
path: root/uisimulator/win32
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-03-10 14:55:31 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-03-10 14:55:31 +0000
commita039091187f40d018b6353b8c13de7a01d3a6fe0 (patch)
tree08f7eb86e86e2c61f4d36f9c91731cb93252ba84 /uisimulator/win32
parent22cbe938feb48895d7488449835d3ee577399057 (diff)
downloadrockbox-a039091187f40d018b6353b8c13de7a01d3a6fe0.tar.gz
rockbox-a039091187f40d018b6353b8c13de7a01d3a6fe0.zip
New ID3 and MP3 stream parser, plus not-yet-ready Xing header generation code
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3410 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32')
-rw-r--r--uisimulator/win32/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index d152ea7933..5d3ad06c76 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -89,7 +89,7 @@ ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
89else 89else
90 LCDSRSC = lcd-playersim.c lcd-player.c lcd-player-charset.c font-player.c 90 LCDSRSC = lcd-playersim.c lcd-player.c lcd-player-charset.c font-player.c
91endif 91endif
92FIRMSRCS = $(LCDSRSC) id3.c usb.c mpeg.c powermgmt.c power.c $(EXTRAFIRMSRC) 92FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c $(EXTRAFIRMSRC)
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 \
@@ -234,6 +234,9 @@ $(OBJDIR)/settings.o: $(APPDIR)/settings.c
234$(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c 234$(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c
235 $(CC) $(CFLAGS) -c $< -o $@ 235 $(CC) $(CFLAGS) -c $< -o $@
236 236
237$(OBJDIR)/mp3data.o: $(FIRMWAREDIR)/mp3data.c
238 $(CC) $(CFLAGS) -c $< -o $@
239
237$(OBJDIR)/font.o: $(FIRMWAREDIR)/font.c 240$(OBJDIR)/font.o: $(FIRMWAREDIR)/font.c
238 $(CC) $(CFLAGS) -c $< -o $@ 241 $(CC) $(CFLAGS) -c $< -o $@
239 242