summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-05-02 12:17:22 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-05-02 12:17:22 +0000
commit86704740792ae81add713f4f4b619c57fee79e47 (patch)
treea0b88eb9c270b65abc1cdbfc2f32a8abf445c373
parentf465db7d2ea626b8bf9e81255c70f8c575f4fcdf (diff)
downloadrockbox-86704740792ae81add713f4f4b619c57fee79e47.tar.gz
rockbox-86704740792ae81add713f4f4b619c57fee79e47.zip
compile and link with sprintf.c always, since we now have a special
fprintf() version git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3639 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/win32/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 00e12ace7c..8bb495e0c3 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -81,7 +81,6 @@ else
81 CFLAGS += -mwindows 81 CFLAGS += -mwindows
82 LDFLAGS += -mwindows 82 LDFLAGS += -mwindows
83 APPCFLAGS += -mwindows 83 APPCFLAGS += -mwindows
84 EXTRAFIRMSRC = sprintf.c
85endif 84endif
86 85
87ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 86ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
@@ -89,7 +88,8 @@ ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
89else 88else
90 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
91endif 90endif
92FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c $(EXTRAFIRMSRC) 91FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c powermgmt.c power.c \
92 sprintf.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 \