summaryrefslogtreecommitdiff
path: root/apps/lang
diff options
context:
space:
mode:
Diffstat (limited to 'apps/lang')
-rw-r--r--apps/lang/Makefile40
-rw-r--r--apps/lang/lang.make34
2 files changed, 34 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)
diff --git a/apps/lang/lang.make b/apps/lang/lang.make
new file mode 100644
index 0000000000..416b2b4504
--- /dev/null
+++ b/apps/lang/lang.make
@@ -0,0 +1,34 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id: Makefile 19082 2008-11-10 23:54:24Z zagor $
8#
9
10LANGS := $(call preprocess, $(APPSDIR)/lang/SOURCES)
11LANGOBJ := $(LANGS:$(ROOTDIR)/%.lang=$(BUILDDIR)/%.lng)
12
13SRC += $(ROOTDIR)/lang.o # yes ROOTDIR. root.make will subst it to BUILDDIR.
14
15CLEANOBJS += $(BUILDDIR)/max_language_size.h $(BUILDDIR)/lang.*
16
17# $(BUILDDIR)/apps/lang must exist before we create dependencies on it,
18# otherwise make will simply ignore those dependencies.
19# Therefore we create it here.
20#DUMMY := $(shell mkdir -p $(BUILDDIR)/apps/lang)
21
22$(BUILDDIR)/max_language_size.h: $(LANGOBJ)
23 $(call PRINTS,Create $(notdir $@))
24 $(SILENT)echo "#define MAX_LANGUAGE_SIZE `ls -ln $(BUILDDIR)/apps/lang/* | awk '{print $$5}' | sort -n | tail -1`" > $@
25
26$(BUILDDIR)/lang.o: $(APPSDIR)/lang/$(LANGUAGE).lang $(BUILDDIR)/apps/features
27 $(SILENT)for f in `cat $(BUILDDIR)/apps/features`; do feat="$$feat:$$f" ; done; \
28 perl -s $(TOOLSDIR)/genlang -p=$(BUILDDIR)/lang -t=$(MODELNAME)$$feat $<
29 $(call PRINTS,CC lang.c)$(CC) $(CFLAGS) -c $(BUILDDIR)/lang.c -o $@
30
31$(BUILDDIR)/%.lng : $(ROOTDIR)/%.lang $(BUILDDIR)/apps/genlang-features
32 $(call PRINTS,GENLANG $(subst $(ROOTDIR)/,,$<))
33 $(SILENT)mkdir -p $(dir $@)
34 $(SILENT)$(TOOLSDIR)/genlang -e=$(APPSDIR)/lang/english.lang -t=$(MODELNAME)`cat $(BUILDDIR)/apps/genlang-features` -i=$(TARGET_ID) -b=$@ $<