Makefile
changeset 0 31a65edead29
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Sun Feb 28 19:37:24 2021 -0600
@@ -0,0 +1,14 @@
+#
+# This is a project Makefile. It is assumed the directory this Makefile resides in is a
+# project subdirectory.
+#
+
+HOMEKIT_PATH ?= $(abspath $(shell pwd)/../..)
+COMMON_COMPONENT_PATH ?= $(abspath $(shell pwd)/../common)
+
+PROJECT_NAME := door
+EXTRA_COMPONENT_DIRS += $(HOMEKIT_PATH)/components/
+EXTRA_COMPONENT_DIRS += $(HOMEKIT_PATH)/components/homekit
+EXTRA_COMPONENT_DIRS += $(COMMON_COMPONENT_PATH)
+
+include $(IDF_PATH)/make/project.mk