Home | History | Annotate | Download | only in core

Lines Matching refs:TARGET

843 # Tags are processed by a toolchain-specific function (e.g. TARGET-compute-cflags)
848 # target-specific C compiler flags used to compile a given
849 # source file. This is set by the function TARGET-set-cflags
905 # Macro : set-src-files-target-cflags
908 # Usage : $(call set-src-files-target-cflags,<sources>,<flags>)
914 set-src-files-target-cflags = $(foreach __src,$1,$(eval LOCAL_SRC_FILES_TARGET_CFLAGS.$(__src) := $2))
917 # Macro : add-src-files-target-cflags
920 # Usage : $(call add-src-files-target-cflags,<sources>,<flags>)
921 # Rationale: A variant of set-src-files-target-cflags that can be used
925 add-src-files-target-cflags = $(foreach __src,$1,$(eval LOCAL_SRC_FILES_TARGET_CFLAGS.$(__src) += $2))
928 # Macro : get-src-file-target-cflags
930 # Usage : $(call get-src-file-target-cflags,<source>)
931 # Rationale: Return the set of target-specific compiler flags that must be
933 # call using set-src-files-target-cflags or add-src-files-target-cflags
935 get-src-file-target-cflags = $(LOCAL_SRC_FILES_TARGET_CFLAGS.$1)
1167 # 2: target object file (without path)
1178 $$(call get-src-file-target-cflags,$(1)) \
1215 # 2: target object file (without path)
1225 $$(call get-src-file-target-cflags,$(1)) \