Moved display portions of wps.c into new file: wps-display.c

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2079 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-08-30 11:04:41 +00:00
parent 648bbfa1ae
commit 6131a3cc0d
5 changed files with 750 additions and 653 deletions

View file

@ -78,7 +78,7 @@ ifeq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(DEFINES)))
endif
APPS = main.c tree.c menu.c credits.c main_menu.c\
playlist.c showtext.c wps.c settings.c status.c
playlist.c showtext.c wps.c wps-display.c settings.c status.c
MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c
@ -200,6 +200,9 @@ $(OBJDIR)/main.o: $(APPDIR)/main.c
$(OBJDIR)/wps.o: $(APPDIR)/wps.c
$(CC) $(APPCFLAGS) -c $< -o $@
$(OBJDIR)/wps-display.o: $(APPDIR)/wps-display.c
$(CC) $(APPCFLAGS) -c $< -o $@
$(OBJDIR)/bmp.o: $(RECDIR)/bmp.c
$(CC) $(APPCFLAGS) -c $< -o $@