mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
Threading is working on uisw32 as well now, code is up-to-date, makefile is up-to-date
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@981 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d0b23126f1
commit
0053ec0c72
11 changed files with 189 additions and 53 deletions
|
|
@ -27,11 +27,11 @@ APPDIR = ../../apps/
|
|||
RECDIR = $(APPDIR)recorder/
|
||||
RM = del
|
||||
|
||||
#DISPLAY = -DHAVE_LCD_CHARCELLS
|
||||
DISPLAY = -DHAVE_LCD_BITMAP
|
||||
DISPLAY = -DHAVE_LCD_CHARCELLS
|
||||
#DISPLAY = -DHAVE_LCD_BITMAP
|
||||
|
||||
#KEYPAD = -DHAVE_PLAYER_KEYPAD
|
||||
KEYPAD = -DHAVE_RECORDER_KEYPAD
|
||||
KEYPAD = -DHAVE_PLAYER_KEYPAD
|
||||
#KEYPAD = -DHAVE_RECORDER_KEYPAD
|
||||
|
||||
CC = cl
|
||||
DEFINES = -DWIN32 -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \
|
||||
|
|
@ -46,7 +46,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) /MD /Fd"Release/vc70.pdb"
|
|||
SRCS = lcd-win32.c uisw32.c lcd.c button.c tree.c main.c \
|
||||
chartables.c kernel.c uisw32.res dir-win32.c main_menu.c \
|
||||
play.c debug-win32.c menu.c credits.c sound_menu.c mpeg.c \
|
||||
id3.c settings.c sprintf.c
|
||||
id3.c settings.c sprintf.c thread-win32.c playlist.c
|
||||
|
||||
!IF ("$(DISPLAY)" == "-DHAVE_LCD_BITMAP")
|
||||
SRCS = $(SRCS) tetris.c screensaver.c icons.c bmp.c
|
||||
|
|
@ -105,5 +105,8 @@ settings.obj: $(FIRMWAREDIR)/settings.c
|
|||
sprintf.obj: $(FIRMWAREDIR)/common/sprintf.c
|
||||
$(CC) $(CFLAGS) -c $(FIRMWAREDIR)/common/sprintf.c -osprintf.obj
|
||||
|
||||
playlist.obj: ../../apps/playlist.c
|
||||
$(CC) $(CFLAGS) -c ../../apps/playlist.c -oplaylist.obj
|
||||
|
||||
clean:
|
||||
$(RM) *.obj
|
||||
$(RM) *.obj
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue