Home | History | Annotate | Download | only in core

Lines Matching refs:if

31 host-path = $(if $(strip $1),$(call cygwin-to-host-path,$1))
46 $(if $(__host_rm_files),del /f/q $(__host_rm_files) >NUL 2>NUL)
61 $(if $(__host_rmdir_files),del /f/s/q $(__host_rmdir_files) >NUL 2>NUL)
71 # to create a path if it doesn't exist.
100 # (if possible).
124 # Function : host-copy-if-differ
127 # Usage : $(call host-copy-if-differ,<src-file>,<dst-file>)
128 # Rationale: This function copy source file to destination file if contents are
132 host-copy-if-differ = $(HOST_CMP) -s $1 $2 > NUL || copy /b/y $(subst /,\,"$1" "$2") > NUL
134 host-copy-if-differ = $(HOST_CMP) -s $1 $2 > /dev/null 2>&1 || cp -f $1 $2