forked from aliyun/iotkit-embedded
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
31 lines (26 loc) · 785 Bytes
/
Copy pathmakefile
File metadata and controls
31 lines (26 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
include make.settings
include src/configs/default_settings.mk
include src/scripts/parse_make_settings.mk
# CFLAGS += -DTEST_MQTT_DAILY
# CFLAGS += -DTEST_HTTP_DAILY
# CFLAGS += -DTEST_COAP_DAILY
# CFLAGS += -DTEST_OTA_PRE
# CFLAGS += -DINSPECT_MQTT_FLOW
include src/scripts/mock_build_options.mk
include project.mk
COMP_LIB := libiot_sdk.a
COMP_LIB_COMPONENTS := \
src/log \
src/utils \
src/system \
src/sdk-impl \
$(call CompLib_Map, MQTT_COMM_ENABLED, \
src/guider \
src/mqtt \
)
$(call CompLib_Map, OTA_ENABLED, src/ota)
$(call CompLib_Map, MQTT_SHADOW, src/shadow)
$(call CompLib_Map, COAP_COMM_ENABLED, src/coap)
$(call CompLib_Map, MQTT_ID2_AUTH, src/tfs)
$(call CompLib_Map, HTTP_COMM_ENABLED, src/http)
include $(RULE_DIR)/rules.mk