summaryrefslogtreecommitdiff
path: root/apps/apps.make
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/apps.make
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/apps.make')
-rw-r--r--apps/apps.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/apps.make b/apps/apps.make
index 78ae121247..3717c5bd34 100644
--- a/apps/apps.make
+++ b/apps/apps.make
@@ -15,9 +15,9 @@ SRC += $(call preprocess, $(APPSDIR)/SOURCES)
15# to genlang and thus (translated) phrases can be used based on those names. 15# to genlang and thus (translated) phrases can be used based on those names.
16# button.h is included for the HAS_BUTTON_HOLD define. 16# button.h is included for the HAS_BUTTON_HOLD define.
17# 17#
18# Kludge: depends on errno.o only to depend on config-*.h ... 18# Kludge: depends on ctype.o only to depend on config-*.h ...
19# 19#
20features $(BUILDDIR)/apps/features $(BUILDDIR)/apps/genlang-features: $(APPSDIR)/features.txt $(BUILDDIR)/firmware/common/errno.o 20features $(BUILDDIR)/apps/features $(BUILDDIR)/apps/genlang-features: $(APPSDIR)/features.txt $(BUILDDIR)/firmware/common/ctype.o
21 $(SILENT)mkdir -p $(BUILDDIR)/apps 21 $(SILENT)mkdir -p $(BUILDDIR)/apps
22 $(SILENT)mkdir -p $(BUILDDIR)/lang 22 $(SILENT)mkdir -p $(BUILDDIR)/lang
23 $(call PRINTS,PP $(<F)) 23 $(call PRINTS,PP $(<F))