summaryrefslogtreecommitdiff
path: root/apps/plugins/pictureflow
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-01-17 13:03:10 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-01-17 13:03:10 +0000
commite3fc65cfff31bf71dc648280ad714d214b9666a1 (patch)
tree907411354b086b164a55539f7dd014faa9c2552e /apps/plugins/pictureflow
parent809e69c769a4d95f36701dad436cb89f02af3002 (diff)
downloadrockbox-e3fc65cfff31bf71dc648280ad714d214b9666a1.tar.gz
rockbox-e3fc65cfff31bf71dc648280ad714d214b9666a1.zip
change dependencies in make files:
* apps.make: depends on ctype.o instead of errno.o to depend on config-*.h so that it works for simulator. * lang.make: add dependency of lang.h to make it sure that the file is updated properly when needed. * plugins.make: object files don't depend on libpluginbitmaps.a. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24256 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pictureflow')
-rw-r--r--apps/plugins/pictureflow/pictureflow.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.make b/apps/plugins/pictureflow/pictureflow.make
index c1fb1f3957..28ad2aa39e 100644
--- a/apps/plugins/pictureflow/pictureflow.make
+++ b/apps/plugins/pictureflow/pictureflow.make
@@ -53,6 +53,6 @@ $(PICTUREFLOW_OBJDIR)/pictureflow.ovl: $(PICTUREFLOW_OBJ) $(PICTUREFLOW_OUTLDS)
53 $(call PRINTS,LD $(@F))$(OC) -O binary $(basename $@).elf $@ 53 $(call PRINTS,LD $(@F))$(OC) -O binary $(basename $@).elf $@
54 54
55# special pattern rule for compiling pictureflow with extra flags 55# special pattern rule for compiling pictureflow with extra flags
56$(PICTUREFLOW_OBJDIR)/%.o: $(PICTUREFLOW_SRCDIR)/%.c $(PLUGINBITMAPLIB) $(PICTUREFLOW_SRCDIR)/pictureflow.make 56$(PICTUREFLOW_OBJDIR)/%.o: $(PICTUREFLOW_SRCDIR)/%.c $(PICTUREFLOW_SRCDIR)/pictureflow.make
57 $(SILENT)mkdir -p $(dir $@) 57 $(SILENT)mkdir -p $(dir $@)
58 $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PICTUREFLOWFLAGS) -c $< -o $@ 58 $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PICTUREFLOWFLAGS) -c $< -o $@