diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-01-20 20:59:07 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-01-20 20:59:07 +0000 |
| commit | e8f8d9e7e93bd211a754b0722977f5ac72a4ba30 (patch) | |
| tree | b11cf1c83a487e98d7413f10265c745a5aa463f4 /apps/plugins/Makefile | |
| parent | b96ec65ac016f3f308049a7287b1beefd0d1b67e (diff) | |
| download | rockbox-e8f8d9e7e93bd211a754b0722977f5ac72a4ba30.zip rockbox-e8f8d9e7e93bd211a754b0722977f5ac72a4ba30.tar.gz rockbox-e8f8d9e7e93bd211a754b0722977f5ac72a4ba30.tar.bz2 rockbox-e8f8d9e7e93bd211a754b0722977f5ac72a4ba30.tar.xz | |
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/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index 8464e93..bb2f7bd 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -41,8 +41,8 @@ DIRS = . #for all targets SUBDIRS += searchengine databox -#for any recorder and iRiver model -ifneq (,$(strip $(foreach tgt,RECORDER IRIVER,$(findstring $(tgt),$(TARGET))))) +#for any recorder, iRiver or iPod model +ifneq (,$(strip $(foreach tgt,RECORDER IRIVER IPOD_COLOR IPOD_VIDEO,$(findstring $(tgt),$(TARGET))))) ifneq (-DIRIVER_IFP7XX,$(TARGET)) SUBDIRS += rockboy endif @@ -148,6 +148,7 @@ clean: $(BUILDDIR)/credits.raw $(OBJS) $(DEFS) @$(MAKE) -C lib clean OBJDIR=$(OBJDIR)/lib @$(MAKE) -C rockboy clean OBJDIR=$(OBJDIR)/rockboy + @$(MAKE) -C mpeg2 clean OBJDIR=$(OBJDIR)/mpeg2 @$(MAKE) -C searchengine clean OBJDIR=$(OBJDIR)/searchengine -include $(DEPFILE) |