mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
added settings.c to the simulator build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1121 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c7e4f828d5
commit
6dc046a54c
1 changed files with 5 additions and 2 deletions
|
|
@ -42,7 +42,7 @@ DISPLAY = -DHAVE_LCD_BITMAP
|
|||
KEYPAD = -DHAVE_RECORDER_KEYPAD
|
||||
|
||||
DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \
|
||||
$(KEYPAD) $(DISPLAY)
|
||||
$(KEYPAD) $(DISPLAY) -DLCD_PROPFONTS
|
||||
|
||||
LDFLAGS = -lX11 -lm -lXt -lXmu -lnsl
|
||||
|
||||
|
|
@ -73,7 +73,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
|
|||
|
||||
APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall
|
||||
|
||||
FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c
|
||||
FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c settings.c
|
||||
|
||||
APPS = main.c tree.c play.c menu.c credits.c main_menu.c sound_menu.c \
|
||||
playlist.c showtext.c
|
||||
|
|
@ -192,6 +192,9 @@ $(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c
|
|||
$(OBJDIR)/chartables.o: $(FIRMWAREDIR)/chartables.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/settings.o: $(FIRMWAREDIR)/settings.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue