summaryrefslogtreecommitdiff
path: root/apps/lang/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
commitc6b3d38a156dd624760a8eb1bb374affd43b4f2a (patch)
tree493eba929e2396d86cf4f077709aa09fe172cd35 /apps/lang/Makefile
parentf66c30346783a400a029bedcd60ab67c81c34a07 (diff)
downloadrockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.tar.gz
rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.zip
New makefile solution: A single invocation of 'make' to build the entire tree. Fully controlled dependencies give faster and more correct recompiles.
Many #include lines adjusted to conform to the new standards. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19146 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/lang/Makefile')
-rw-r--r--apps/lang/Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/apps/lang/Makefile b/apps/lang/Makefile
deleted file mode 100644
index 15e9f49605..0000000000
--- a/apps/lang/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9
10INCLUDES= $(TARGET_INC) -I$(FIRMDIR)/include -I$(FIRMDIR)/export \
11-I. -I$(BUILDDIR) -I$(OBJDIR)
12
13# the header we generate
14HEADER = $(BUILDDIR)/max_language_size.h
15
16# This sets up 'SRC' based on the files mentioned in SOURCES
17include $(TOOLSDIR)/makesrc.inc
18SOURCES=$(SRC)
19
20# OUTP is the list of files to depend upon
21OUTP = $(patsubst %.lang,$(OBJDIR)/%.lng, $(SOURCES))
22
23# the generated file with features specified genlang-style
24FEATS=$(BUILDDIR)/apps/genlang-features
25
26ifndef V
27SILENT=@
28endif
29PRINTS=$(SILENT)$(call info,$(1))
30
31all: $(HEADER)
32
33# generic rule for creating .lng from .lang
34$(OBJDIR)/%.lng : %.lang $(FEATS)
35 $(call PRINTS,GENLANG $<)
36 $(SILENT)$(TOOLSDIR)/genlang -e=$(APPSDIR)/lang/english.lang -t=$(MODELNAME)`cat $(FEATS)` -i=$(TARGET_ID) -b=$@ $<
37
38$(HEADER): $(OUTP)
39 $(call PRINTS,Make $(HEADER))
40 $(SILENT)echo "#define MAX_LANGUAGE_SIZE `ls -ln $(OBJDIR)/* | awk '{print $$5}' | sort -n | tail -1`" > $(HEADER)