zephyr/subsys/net/lib/Makefile
Ravi kumar Veeramally 42a91f4c07 net: coap: Rename ZOAP library
ZOAP library has certain limitations in parsing and preparation of
coap messages. It can handle only on single network fragment. If
network packet is split between multiple fragments it fails. This
patch is just copy and rename of 'zoap' to 'coap'.

Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com>
2017-10-06 22:07:37 -04:00

36 lines
690 B
Makefile

ifdef CONFIG_NET_SOCKETS
include $(srctree)/subsys/net/lib/sockets/Makefile
endif
ifdef CONFIG_ZOAP
include $(srctree)/subsys/net/lib/zoap/Makefile
endif
ifdef CONFIG_COAP
include $(srctree)/subsys/net/lib/coap/Makefile
endif
ifdef CONFIG_DNS_RESOLVER
include $(srctree)/subsys/net/lib/dns/Makefile
endif
ifdef CONFIG_MQTT_LIB
include $(srctree)/subsys/net/lib/mqtt/Makefile
endif
ifdef CONFIG_HTTP
include $(srctree)/subsys/net/lib/http/Makefile
endif
ifdef CONFIG_NET_APP_SETTINGS
include $(srctree)/subsys/net/lib/app/Makefile
endif
ifdef CONFIG_LWM2M
include $(srctree)/subsys/net/lib/lwm2m/Makefile
endif
ifdef CONFIG_SNTP
include $(srctree)/subsys/net/lib/sntp/Makefile
endif