diff options
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) |