2008-11-20 11:27:31 +00:00
|
|
|
# __________ __ ___.
|
|
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
# \/ \/ \/ \/ \/
|
2008-11-25 19:54:23 +00:00
|
|
|
# $Id$
|
2008-11-20 11:27:31 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
INCLUDES += -I$(APPSDIR) $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA)))
|
|
|
|
SRC += $(call preprocess, $(APPSDIR)/SOURCES)
|
|
|
|
|
|
|
|
# apps/features.txt is a file that (is preprocessed and) lists named features
|
|
|
|
# based on defines in the config-*.h files. The named features will be passed
|
|
|
|
# to genlang and thus (translated) phrases can be used based on those names.
|
|
|
|
# button.h is included for the HAS_BUTTON_HOLD define.
|
|
|
|
#
|
2010-05-06 21:04:40 +00:00
|
|
|
# Kludge: depends on config.o which only depends on config-*.h to have config.h
|
|
|
|
# changes trigger a genlang re-run
|
2009-08-20 22:19:04 +00:00
|
|
|
#
|
2010-06-30 16:29:55 +00:00
|
|
|
$(BUILDDIR)/apps/features: $(APPSDIR)/features.txt $(BUILDDIR)/firmware/common/config.o
|
2008-11-26 22:48:26 +00:00
|
|
|
$(SILENT)mkdir -p $(BUILDDIR)/apps
|
2009-03-02 06:13:18 +00:00
|
|
|
$(SILENT)mkdir -p $(BUILDDIR)/lang
|
2008-11-20 11:27:31 +00:00
|
|
|
$(call PRINTS,PP $(<F))
|
|
|
|
$(SILENT)$(CC) $(PPCFLAGS) \
|
|
|
|
-E -P -imacros "config.h" -imacros "button.h" -x c $< | \
|
2023-03-14 13:05:49 +00:00
|
|
|
grep -v "^#" | grep -v "^ *$$" > $(BUILDDIR)/apps/features; \
|
2010-06-30 16:29:55 +00:00
|
|
|
|
|
|
|
$(BUILDDIR)/apps/genlang-features: $(BUILDDIR)/apps/features
|
2010-07-17 15:33:35 +00:00
|
|
|
$(call PRINTS,GEN $(subst $(BUILDDIR)/,,$@))tr \\n : < $< > $@
|
2009-07-13 00:40:35 +00:00
|
|
|
|
|
|
|
ASMDEFS_SRC += $(APPSDIR)/core_asmdefs.c
|