equal
  deleted
  inserted
  replaced
  
    
    
|         |      1 # | 
|         |      2 # This is a project Makefile. It is assumed the directory this Makefile resides in is a | 
|         |      3 # project subdirectory. | 
|         |      4 # | 
|         |      5  | 
|         |      6 HOMEKIT_PATH ?= $(abspath $(shell pwd)/../..) | 
|         |      7 COMMON_COMPONENT_PATH ?= $(abspath $(shell pwd)/../common) | 
|         |      8  | 
|         |      9 PROJECT_NAME := door | 
|         |     10 EXTRA_COMPONENT_DIRS += $(HOMEKIT_PATH)/components/ | 
|         |     11 EXTRA_COMPONENT_DIRS += $(HOMEKIT_PATH)/components/homekit | 
|         |     12 EXTRA_COMPONENT_DIRS += $(COMMON_COMPONENT_PATH) | 
|         |     13  | 
|         |     14 include $(IDF_PATH)/make/project.mk |