ed7ab52e27
GNU grep 3.8 warns about "\#" when compiling. The "#" has to be escaped for Makefiles and shell, but it isn't special to grep so grep thinks it's an invalid escape sequence. Change-Id: Ieb2607d42b7daa1939ca0101b915ec0c7afd4298
32 lines
1.4 KiB
Makefile
32 lines
1.4 KiB
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
|
|
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.
|
|
#
|
|
# Kludge: depends on config.o which only depends on config-*.h to have config.h
|
|
# changes trigger a genlang re-run
|
|
#
|
|
$(BUILDDIR)/apps/features: $(APPSDIR)/features.txt $(BUILDDIR)/firmware/common/config.o
|
|
$(SILENT)mkdir -p $(BUILDDIR)/apps
|
|
$(SILENT)mkdir -p $(BUILDDIR)/lang
|
|
$(call PRINTS,PP $(<F))
|
|
$(SILENT)$(CC) $(PPCFLAGS) \
|
|
-E -P -imacros "config.h" -imacros "button.h" -x c $< | \
|
|
grep -v "^#" | grep -v "^ *$$" > $(BUILDDIR)/apps/features; \
|
|
|
|
$(BUILDDIR)/apps/genlang-features: $(BUILDDIR)/apps/features
|
|
$(call PRINTS,GEN $(subst $(BUILDDIR)/,,$@))tr \\n : < $< > $@
|
|
|
|
ASMDEFS_SRC += $(APPSDIR)/core_asmdefs.c
|