summaryrefslogtreecommitdiff
path: root/apps/plugins/Makefile
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-01-20 20:59:07 +0000
committerDave Chapman <dave@dchapman.com>2006-01-20 20:59:07 +0000
commite8f8d9e7e93bd211a754b0722977f5ac72a4ba30 (patch)
treeb11cf1c83a487e98d7413f10265c745a5aa463f4 /apps/plugins/Makefile
parentb96ec65ac016f3f308049a7287b1beefd0d1b67e (diff)
downloadrockbox-e8f8d9e7e93bd211a754b0722977f5ac72a4ba30.tar.gz
rockbox-e8f8d9e7e93bd211a754b0722977f5ac72a4ba30.zip
Initial support for iPod color and video. The Nano has a 176x132 LCD, which is the first colour LCD smaller than the gameboy's 160x144 display - so it needs work to skip scanlines. Button handling still needs more work - only up/down/left/right/start are currently mapped. Code is removed from IRAM due to 'relocation truncated to fit: R_ARM_PC24' errors.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8400 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/Makefile')
-rw-r--r--apps/plugins/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile
index 8464e93586..bb2f7bd194 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -41,8 +41,8 @@ DIRS = .
41#for all targets 41#for all targets
42SUBDIRS += searchengine databox 42SUBDIRS += searchengine databox
43 43
44#for any recorder and iRiver model 44#for any recorder, iRiver or iPod model
45ifneq (,$(strip $(foreach tgt,RECORDER IRIVER,$(findstring $(tgt),$(TARGET))))) 45ifneq (,$(strip $(foreach tgt,RECORDER IRIVER IPOD_COLOR IPOD_VIDEO,$(findstring $(tgt),$(TARGET)))))
46ifneq (-DIRIVER_IFP7XX,$(TARGET)) 46ifneq (-DIRIVER_IFP7XX,$(TARGET))
47 SUBDIRS += rockboy 47 SUBDIRS += rockboy
48endif 48endif
@@ -148,6 +148,7 @@ clean:
148 $(BUILDDIR)/credits.raw $(OBJS) $(DEFS) 148 $(BUILDDIR)/credits.raw $(OBJS) $(DEFS)
149 @$(MAKE) -C lib clean OBJDIR=$(OBJDIR)/lib 149 @$(MAKE) -C lib clean OBJDIR=$(OBJDIR)/lib
150 @$(MAKE) -C rockboy clean OBJDIR=$(OBJDIR)/rockboy 150 @$(MAKE) -C rockboy clean OBJDIR=$(OBJDIR)/rockboy
151 @$(MAKE) -C mpeg2 clean OBJDIR=$(OBJDIR)/mpeg2
151 @$(MAKE) -C searchengine clean OBJDIR=$(OBJDIR)/searchengine 152 @$(MAKE) -C searchengine clean OBJDIR=$(OBJDIR)/searchengine
152 153
153-include $(DEPFILE) 154-include $(DEPFILE)