55eb1c54eb
Original patch by Mario Lang Heavily updated by Igor Poretsky Further updated by myself This patch breaks binary API compatibility by placing the new functions where they make the most logical sense. IMO this is the better approach to take given the scope of the changes needed for talk support. Since binary API is changing, the patch also moves some other functions around to more logical locations. As well as voice support in plugins, this patch voice-enables several simple plugins. There will be follow-up patches for many plugins that build on this one. Change-Id: I18070c06e77e8a3c016c2eb6b6c5dbe6633b9b54
56 lines
3 KiB
Makefile
56 lines
3 KiB
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
|
|
LANGS := $(call preprocess, $(APPSDIR)/lang/SOURCES)
|
|
LANGOBJ := $(LANGS:$(ROOTDIR)/%.lang=$(BUILDDIR)/%.lng)
|
|
VOICEOBJ := $(LANGS:$(ROOTDIR)/%.lang=$(BUILDDIR)/%.vstrings)
|
|
LANG_O = $(BUILDDIR)/lang/lang_core.o
|
|
|
|
CLEANOBJS += $(BUILDDIR)/lang/max_language_size.h $(BUILDDIR)/lang/lang*
|
|
|
|
# $(BUILDDIR)/apps/lang must exist before we create dependencies on it,
|
|
# otherwise make will simply ignore those dependencies.
|
|
# Therefore we create it here.
|
|
#DUMMY := $(shell mkdir -p $(BUILDDIR)/apps/lang)
|
|
|
|
# Calculate the maximum language size. Currently based on the file size
|
|
# of the largest lng file. Subtract 10 due to HEADER_SIZE and
|
|
# SUBHEADER_SIZE.
|
|
# TODO: In the future generate this file within genlang or another script
|
|
# in order to only calculate the maximum size based on the core strings.
|
|
$(BUILDDIR)/lang/max_language_size.h: $(LANGOBJ) $(BUILDDIR)/apps/lang/voicestrings.zip
|
|
$(call PRINTS,GEN $(subst $(BUILDDIR)/,,$@))
|
|
$(SILENT)echo "#define MAX_LANGUAGE_SIZE `ls -ln $(BUILDDIR)/apps/lang/*.lng | awk '{print $$5-10}' | sort -n | tail -1`" > $@
|
|
|
|
$(BUILDDIR)/lang/lang_core.o: $(BUILDDIR)/lang/lang.h $(BUILDDIR)/lang/lang_core.c
|
|
$(call PRINTS,CC lang_core.c)$(CC) $(CFLAGS) -c $(BUILDDIR)/lang/lang_core.c -o $@
|
|
|
|
# genlang creates *both* lang.c and lang.h but in Make there is no wat to express this rule
|
|
# (multiple target rules DO NOT express that, they are a simple shortcut for multiple rules)
|
|
# instead we pretend that genlang create lang_core.c and that lang.c depends from lang.h
|
|
# it will work fine as long as one never manually removes lang.c and not lang.h, and it will avoid
|
|
# race conditions such as running genlang twice or worse in parallel with other things!
|
|
$(BUILDDIR)/lang/lang.h: $(APPSDIR)/lang/$(LANGUAGE).lang $(BUILDDIR)/apps/features
|
|
$(call PRINTS,GEN lang.h)
|
|
$(SILENT)for f in `cat $(BUILDDIR)/apps/features`; do feat="$$feat:$$f" ; done; \
|
|
perl -s $(TOOLSDIR)/genlang -p=$(BUILDDIR)/lang -t=$(MODELNAME)$$feat $<
|
|
$(BUILDDIR)/lang/lang_core.c: $(BUILDDIR)/lang/lang.h
|
|
|
|
$(BUILDDIR)/lang_enum.h: $(BUILDDIR)/lang/lang.h
|
|
|
|
# NOTE: for some weird reasons in GNU make, multi targets rules WITH patterns actually express
|
|
# the fact that the two files are created as the result of one invocation of the rule
|
|
$(BUILDDIR)/%.lng $(BUILDDIR)/%.vstrings: $(ROOTDIR)/%.lang $(BUILDDIR)/apps/genlang-features
|
|
$(call PRINTS,GENLANG $(subst $(ROOTDIR)/,,$<))
|
|
$(SILENT)mkdir -p $(dir $@)
|
|
$(SILENT)$(TOOLSDIR)/genlang -e=$(APPSDIR)/lang/english.lang -t=$(MODELNAME):`cat $(BUILDDIR)/apps/genlang-features` -i=$(TARGET_ID) -b=$*.lng -c=$*.vstrings $<
|
|
|
|
$(BUILDDIR)/apps/lang/voicestrings.zip: $(VOICEOBJ)
|
|
$(call PRINTS,ZIP $(subst $(BUILDDIR)/,,$@))
|
|
$(SILENT)zip -9 -q $@ $(subst $(BUILDDIR)/,,$^)
|