Lines Matching refs:shell
27 ifeq ($(shell echo $$0),$$0)
213 KBUILD_OUTPUT := $(shell ( if not exist $(KBUILD_OUTPUT)\ mkdir $(KBUILD_OUTPUT) ) \
217 KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \
226 _dummy := $(shell echo T := $(T)> $(KBUILD_OUTPUT)/../.config)
228 _dummy := $(shell echo "T := $(T)" > $(KBUILD_OUTPUT)/../.config)
248 START_TIME := $(shell echo %time%)
249 START_DATE_TIME := $(shell echo %date% %time%)
251 START_TIME := $(shell date +"%s.%N")
252 START_DATE_TIME := $(shell date +"%Y-%m-%d %T.%N")
312 GIT_REVISION := $(shell (where git >nul 2>&1) && (git rev-parse --short HEAD 2>nul))
314 GIT_REVISION := $(shell (which git >/dev/null 2>&1) && (git rev-parse --short HEAD 2>/dev/null))
319 GIT_REVISION := $(GIT_REVISION)$(shell (git diff --quiet && git diff --cached --quiet) >nul 2>&1 ||…
321 GIT_REVISION := $(GIT_REVISION)$(shell (git diff --quiet && git diff --cached --quiet) >/dev/null 2…
351 CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
567 export BUILD_HOSTNAME := $(shell hostname -s)
568 export BUILD_USERNAME := $(shell id -un)