Home | History | Annotate | Download | only in core

Lines Matching defs:APP

60 # Check that APP is not empty
61 APP := $(strip $(APP))
62 ifndef APP
64 The APP variable is undefined or empty.)
74 # Check that all apps listed in APP do exist
75 _bad_apps := $(strip $(filter-out $(NDK_ALL_APPS),$(APP)))
78 APP variable defined to unknown applications: $(_bad_apps))
84 # Check that all apps listed in APP have an Application.mk
86 $(foreach _app,$(APP),\
109 # now check that APP doesn't contain an unknown app name
111 # app name in the list. Otherwise, abort with an error message
113 _unknown_apps := $(filter-out $(NDK_ALL_APPS),$(APP))
114 _known_apps := $(filter $(NDK_ALL_APPS),$(APP))
116 NDK_APPS := $(APP)
121 Removing unknown names from APP variable: $(_unknown_apps))\
125 The APP variable contains unknown app names: $(_unknown_apps))\
134 # Where all app-specific generated files will be stored