summaryrefslogtreecommitdiff
path: root/uisimulator/win32
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-05-09 16:01:21 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-05-09 16:01:21 +0000
commit20d031f9c70109dae2ea320a4c7264e1e489d8eb (patch)
tree4459bf0a6cbba8e557b60397acfff6f5be3bda10 /uisimulator/win32
parentaf2b7adefe31839bebbc407083d980a112e7242c (diff)
downloadrockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.tar.gz
rockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.zip
Configurable dir browser file buffer size. No more 400-file limit. No more whining.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3661 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 3885e46e6f..c20e82d07d 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -89,7 +89,7 @@ else
89 LCDSRSC = lcd-playersim.c lcd-player.c lcd-player-charset.c font-player.c 89 LCDSRSC = lcd-playersim.c lcd-player.c lcd-player-charset.c font-player.c
90endif 90endif
91FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c \ 91FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c \
92 sprintf.c 92 sprintf.c buffer.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 \
@@ -272,6 +272,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
272$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 272$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
273 $(CC) $(CFLAGS) -c $< -o $@ 273 $(CC) $(CFLAGS) -c $< -o $@
274 274
275$(OBJDIR)/buffer.o: $(FIRMWAREDIR)/buffer.c
276 $(CC) $(CFLAGS) -c $< -o $@
277
275$(OBJDIR)/ctype.o: $(COMMON)/ctype.c 278$(OBJDIR)/ctype.o: $(COMMON)/ctype.c
276 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@ 279 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@
277 280