diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-02-15 00:02:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-02-15 00:02:12 +0000 |
commit | 353da9ba48c359d3a876dbfe05f4125b9b411e7e (patch) | |
tree | 1a801e6fb712577ed30c87c85e9e913b0a9c557f /uisimulator | |
parent | a62fd981b2004a9c442bd82016ba086866024b64 (diff) | |
download | rockbox-353da9ba48c359d3a876dbfe05f4125b9b411e7e.tar.gz rockbox-353da9ba48c359d3a876dbfe05f4125b9b411e7e.zip |
don't build ctype
don't use firmware/include in the include path
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3269 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/win32/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index f18352ac61..c81b88c809 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -61,7 +61,7 @@ LDFLAGS = -lgdi32 -luser32 -mwindows INCLUDES = -I. -I$(EXPORT) -I$(APPDIR) -I$(MACHINEDIR) -I../common -I$(MACHINEDIR) -I$(OBJDIR) # The true Rockbox Applications should use this include path: -APPINCLUDES = -I$(FIRMWAREDIR)/include $(INCLUDES) +APPINCLUDES = $(INCLUDES) DEFINES += -DWIN32 @@ -75,7 +75,7 @@ else LCDSRSC = lcd-playersim.c lcd-player.c endif FIRMSRCS = $(LCDSRSC) power.c sprintf.c id3.c usb.c \ - mpeg.c powermgmt.c font.c sysfont.c ctype.c + mpeg.c powermgmt.c font.c sysfont.c APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ playlist.c wps.c wps-display.c settings.c status.c \ |