Lines Matching refs:SRC
704 # Macro : clear-all-src-tags
706 # Usage : $(clear-all-src-tags)
708 clear-all-src-tags = \
720 # Macro : tag-src-files
723 # Usage : $(call tag-src-files,<list-of-source-files>,<tagname>)
726 tag-src-files = \
734 # Macro : get-src-files-with-tag
736 # Usage : $(call get-src-files-with-tag,<tagname>)
739 get-src-files-with-tag = $(LOCAL_SRC_TAG.$1)
742 # Macro : get-src-files-without-tag
744 # Usage : $(call get-src-files-without-tag,<tagname>)
747 get-src-files-without-tag = $(filter-out $(LOCAL_SRC_TAG.$1),$(LOCAL_SRC_FILES))
750 # Macro : set-src-files-target-cflags
753 # Usage : $(call set-src-files-target-cflags,<sources>,<flags>)
759 set-src-files-target-cflags = $(foreach __src,$1,$(eval LOCAL_SRC_FILES_TARGET_CFLAGS.$(__src) := $2))
762 # Macro : add-src-files-target-cflags
765 # Usage : $(call add-src-files-target-cflags,<sources>,<flags>)
766 # Rationale: A variant of set-src-files-target-cflags that can be used
770 add-src-files-target-cflags = $(foreach __src,$1,$(eval LOCAL_SRC_FILES_TARGET_CFLAGS.$(__src) += $2))
773 # Macro : get-src-file-target-cflags
775 # Usage : $(call get-src-file-target-cflags,<source>)
778 # call using set-src-files-target-cflags or add-src-files-target-cflags
780 get-src-file-target-cflags = $(LOCAL_SRC_FILES_TARGET_CFLAGS.$1)
783 # Macro : set-src-files-text
786 # Usage : $(call set-src-files-text,<sources>,<text>)
793 set-src-files-text = $(foreach __src,$1,$(eval LOCAL_SRC_FILES_TEXT.$(__src) := $2))
796 # Macro : get-src-file-text
798 # Usage : $(call get-src-file-text,<source>)
800 # set-src-files-text was called.
802 get-src-file-text = $(LOCAL_SRC_FILES_TEXT.$1)
805 dump-src-file-tags = \
810 $(info WITH arm = $(call get-src-files-with-tag,arm)) \
811 $(info WITHOUT arm = $(call get-src-files-without-tag,arm)) \
950 #$$(info SRC=$$(_SRC) OBJ=$$(_OBJ) OBJ_ORIGINAL=$$(_OBJ_ASM_ORIGINAL) OBJ_FILTERED=$$(_OBJ_ASM_FILTERED))
1007 $$(call get-src-file-target-cflags,$(1)) \
1052 $$(call get-src-file-target-cflags,$(1)) \