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