diff options
| author | Tom Ross <midgey@rockbox.org> | 2009-03-02 06:13:18 +0000 |
|---|---|---|
| committer | Tom Ross <midgey@rockbox.org> | 2009-03-02 06:13:18 +0000 |
| commit | 4fb5864a6c9f4117edd23f8a14ef6efddf09fcb8 (patch) | |
| tree | c09a4b900a7a6fe7b6b3ccfa42d751f9e0caf69d /tools/functions.make | |
| parent | 2d8813e26ba4c185996c9552f935a2de34566e17 (diff) | |
| download | rockbox-4fb5864a6c9f4117edd23f8a14ef6efddf09fcb8.zip rockbox-4fb5864a6c9f4117edd23f8a14ef6efddf09fcb8.tar.gz rockbox-4fb5864a6c9f4117edd23f8a14ef6efddf09fcb8.tar.bz2 rockbox-4fb5864a6c9f4117edd23f8a14ef6efddf09fcb8.tar.xz | |
Move generated lang-related files to their own directory in preparation of localizable plugins.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20170 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/functions.make')
| -rw-r--r-- | tools/functions.make | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/functions.make b/tools/functions.make index b16bce3..6748962 100644 --- a/tools/functions.make +++ b/tools/functions.make @@ -32,9 +32,9 @@ c2obj = $(addsuffix .o,$(basename $(subst $(ROOTDIR),$(BUILDDIR),$(1)))) mkdepfile = $(shell \ $(CC) $(PPCFLAGS) $(OTHER_INC) -MG -MM -include config.h $(2) | \ $(TOOLSDIR)/addtargetdir.pl $(ROOTDIR) $(BUILDDIR) | \ - sed -e "s: lang.h: $(BUILDDIR)/lang.o:" \ + sed -e "s: lang.h: $(BUILDDIR)/lang/lang_core.o:" \ -e "s: sysfont.h: $(BUILDDIR)/sysfont.h:" \ - -e "s: max_language_size.h: $(BUILDDIR)/max_language_size.h:" \ + -e "s: max_language_size.h: $(BUILDDIR)/lang/max_language_size.h:" \ -e "s: bitmaps/: $(BUILDDIR)/bitmaps/:g" \ -e "s: pluginbitmaps/: $(BUILDDIR)/pluginbitmaps/:g" \ -e "s: lib/: $(APPSDIR)/plugins/lib/:g" \ |