Lines Matching +full:- +full:- +full:non +full:- +full:interactive
1 # Functionality common to both top-level project makefile (project.mk)
12 -include $(SDKCONFIG_MAKEFILE)
13 export SDKCONFIG_MAKEFILE # sub-makes (like bootloader) will reuse this path
15 # BATCH_BUILD flag disables interactive terminal features, defaults to verbose build
34 MAKEFLAGS += --silent
38 MAKEFLAGS += --warn-undefined-variables
56 # macro to keep an absolute path as-is, but resolve a relative path
60 # $(2) directory to resolve non-absolute path against
77 # This allows you to have something like an "order-only phony prerequisite",
80 # Because normal order-only prerequisites don't work with phony targets.
88 # Will only keep the unique items; if there are non-unique items in the list, it will remove
90 # Copied from http://stackoverflow.com/questions/16144115/makefile-remove-duplicate-words-without-s…
92 $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))