diff options
author | Teruaki Kawashima <teru@rockbox.org> | 2010-01-17 13:03:10 +0000 |
---|---|---|
committer | Teruaki Kawashima <teru@rockbox.org> | 2010-01-17 13:03:10 +0000 |
commit | e3fc65cfff31bf71dc648280ad714d214b9666a1 (patch) | |
tree | 907411354b086b164a55539f7dd014faa9c2552e /apps/plugins/plugins.make | |
parent | 809e69c769a4d95f36701dad436cb89f02af3002 (diff) | |
download | rockbox-e3fc65cfff31bf71dc648280ad714d214b9666a1.tar.gz rockbox-e3fc65cfff31bf71dc648280ad714d214b9666a1.tar.bz2 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/plugins.make')
-rw-r--r-- | apps/plugins/plugins.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make index 4c20a84835..62640ab630 100644 --- a/apps/plugins/plugins.make +++ b/apps/plugins/plugins.make @@ -76,7 +76,7 @@ $(BUILDDIR)/apps/plugins/lib/%.o: $(ROOTDIR)/apps/plugins/lib/%.c $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PLUGINFLAGS) -ffunction-sections -fdata-sections -c $< -o $@ # special pattern rule for compiling plugins with extra flags -$(BUILDDIR)/apps/plugins/%.o: $(ROOTDIR)/apps/plugins/%.c $(PLUGINBITMAPLIB) +$(BUILDDIR)/apps/plugins/%.o: $(ROOTDIR)/apps/plugins/%.c $(SILENT)mkdir -p $(dir $@) $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PLUGINFLAGS) -c $< -o $@ |