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/make.inc | |
| 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/make.inc')
| -rw-r--r-- | tools/make.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/make.inc b/tools/make.inc index 7d97efd..601b892 100644 --- a/tools/make.inc +++ b/tools/make.inc @@ -17,7 +17,7 @@ $(OBJDIR)/%.o: %.S # errors/warnings to cause an error code to get returned and thus stop the # build # -# This script checks for the presence of $(BUILDDIR)/lang.h and if it doesn't +# This script checks for the presence of $(BUILDDIR)/lang/lang.h and if it doesn't # alreay exist, it is created. This is because lots of files include this # *generated* file and if it doesn't exist when we generate the deps it is no # good. There's a -MG compiler option to cover for this case, but it doesn't @@ -45,7 +45,7 @@ $(DEPFILE): $(SOURCES) rm $$del; \ del=""; \ fi \ - done | sed -e "s:[^[:space:]]*lang.h:$(OBJDIR)/lang.o:" \ + done | sed -e "s:[^[:space:]]*lang.h:$(OBJDIR)/lang/lang_core.o:" \ -e "s:[^[:space:]]*sysfont.h:$(BUILDDIR)/sysfont.h:" \ -e "s:[^[:space:]]*max_language_size.h:$(BUILDDIR)/max_language_size.h:" \ -e "s: bitmaps/: $(BUILDDIR)/bitmaps/:g" \ |