Lines Matching refs:TMP
86 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
87 # Exit code chooses option. "$$TMP" is can be used as temporary file and
90 TMP="$(TMPOUT).$$$$.tmp"; \
96 rm -f "$$TMP" "$$TMPO")
102 $(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2))
108 printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3))
114 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
119 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
129 …$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(stri…
145 $(CC) $(1) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
150 $(CC) -x c /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2))
155 ar-option = $(call try-run, $(AR) rc$(1) "$$TMP",$(1),$(2))