Lines Matching refs:IDF_PATH
84 SANITISED_IDF_PATH:=$(realpath $(IDF_PATH))
86 SANITISED_IDF_PATH:=$(realpath $(wildcard $(IDF_PATH)))
89 export IDF_PATH := $(SANITISED_IDF_PATH)
91 ifndef IDF_PATH
92 $(error IDF_PATH variable is not set to a valid directory.)
110 $(error If IDF_PATH is overriden on command line, it must be an absolute path with no embedded shel…
114 $(error IDF_PATH cannot contain colons. If overriding IDF_PATH on Windows, use MSYS Unix-style /c/d…
129 …OMMON_MAKEFILES := $(abspath $(IDF_PATH)/make/project.mk $(IDF_PATH)/make/common.mk $(IDF_PATH)/ma…
151 COMPONENT_DIRS := $(PROJECT_PATH)/components $(EXTRA_COMPONENT_DIRS) $(IDF_PATH)/components $(PROJE…
246 include $(IDF_PATH)/make/common.mk
252 $(PYTHON) $(IDF_PATH)/tools/check_python_dependencies.py
259 include $(IDF_PATH)/make/project_config.mk
347 ifeq ("$(wildcard ${IDF_PATH}/version.txt)","")
348 IDF_VER_T := $(shell cd ${IDF_PATH} && git describe --always --dirty --match v*.*)
350 IDF_VER_T := $(shell cat ${IDF_PATH}/version.txt)
693 ifneq ("$(wildcard ${IDF_PATH}/.gitmodules)","")
696 GIT_STATUS := $(shell cd ${IDF_PATH} && git status --porcelain --ignore-submodules=dirty)
704 [ -e ${IDF_PATH}/.git ] || { echo "ERROR: esp-idf must be cloned from git to work."; exit 1; }
707 cd ${IDF_PATH} && git submodule update --init $(1)