Split lcd driver into lcd-player and lcd-recorder. Player simulator still needs fixing.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2370 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-09-23 11:17:52 +00:00
parent e0d60436b2
commit 86f9a8410b
9 changed files with 1130 additions and 1100 deletions

View file

@ -62,7 +62,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
FIRMSRCS = lcd.c power.c sprintf.c id3.c usb.c \
FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \
mpeg.c powermgmt.c font.c sysfont.c
APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \
@ -166,8 +166,8 @@ $(OBJDIR)/lang.o: $(APPDIR)/lang/$(LANGUAGE).lang
$(TOOLSDIR)/genlang -p=$(OBJDIR)/lang $<
$(CC) $(CFLAGS) -c $(OBJDIR)/lang.c -o $@
$(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c
$(CC) $(APPCFLAGS) -c $< -o $@
$(OBJDIR)/lcd.o: $(DRIVERS)/lcd-recorder.c
$(CC) $(APPCFLAGS) -DHAVE_LCD_BITMAP -c $< -o $@
$(OBJDIR)/power.o: $(DRIVERS)/power.c
$(CC) $(APPCFLAGS) -c $< -o $@