diff options
| author | Mats Lidell <matsl@rockbox.org> | 2002-10-18 13:46:58 +0000 |
|---|---|---|
| committer | Mats Lidell <matsl@rockbox.org> | 2002-10-18 13:46:58 +0000 |
| commit | ac59dceeea3c9d2fd9b971d19e6dbcc517398aac (patch) | |
| tree | 0a7eaadd5b1b298773eeaea39eb0688e43314057 | |
| parent | f4f9997404a5c851e4d90ef9f59297f151c9fc66 (diff) | |
| download | rockbox-ac59dceeea3c9d2fd9b971d19e6dbcc517398aac.zip rockbox-ac59dceeea3c9d2fd9b971d19e6dbcc517398aac.tar.gz rockbox-ac59dceeea3c9d2fd9b971d19e6dbcc517398aac.tar.bz2 rockbox-ac59dceeea3c9d2fd9b971d19e6dbcc517398aac.tar.xz | |
Use lcd-player.c in simulator. (Not tested but better?!)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2720 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index 222b05a..c49fa89 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -59,19 +59,18 @@ INCLUDES = -I. -I$(DRIVERS) -I$(COMMON) -I$(FIRMWAREDIR) -I$(APPDIR) -I$(MACHINE # The true Rockbox Applications should use this include path: APPINCLUDES = -I$(FIRMWAREDIR)/include $(INCLUDES) -ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) - LCDSRSC = lcd-recorder.c -else - LCDSRSC = lcd-playersim.c lcd-player.c -endif - DEFINES += -DWIN32 CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows -FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \ +ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) + LCDSRSC = lcd-recorder.c +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 APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ |