9995980a1a
2.add mqtt support in the tool directory
16 lines
229 B
Makefile
16 lines
229 B
Makefile
SRC_DIR :=
|
|
|
|
ifeq ($(CONFIG_TOOL_SHELL),y)
|
|
SRC_DIR += shell
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TOOL_USING_OTA),y)
|
|
SRC_DIR += bootloader
|
|
endif
|
|
|
|
ifeq ($(CONFIG_TOOL_USING_MQTT),y)
|
|
SRC_DIR += mqtt
|
|
endif
|
|
|
|
include $(KERNEL_ROOT)/compiler.mk
|