1PROJECT_NAME := restful_server 2 3EXTRA_COMPONENT_DIRS = $(IDF_PATH)/examples/common_components/protocol_examples_common 4 5include $(IDF_PATH)/make/project.mk 6 7ifdef CONFIG_EXAMPLE_WEB_DEPLOY_SF 8WEB_SRC_DIR = $(shell pwd)/front/web-demo 9ifneq ($(wildcard $(WEB_SRC_DIR)/dist/.*),) 10SPIFFS_IMAGE_FLASH_IN_PROJECT := 1 11$(eval $(call spiffs_create_partition_image,www,$(WEB_SRC_DIR)/dist)) 12else 13$(error $(WEB_SRC_DIR)/dist doesn't exist. Please run 'npm run build' in $(WEB_SRC_DIR)) 14endif 15endif 16