zephyr/subsys/net/lib/Makefile
Jukka Rissanen a1be6a8ba9 net: app: Create support for network application API
The network application API is a higher level API for creating
client and server type applications. Instead of applications
dealing with low level details, the network application API
provides services that most of the applications can use directly.

This commit removes the internal net_sample_*() API and converts
the existing users of it to use the new net_app API.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2017-06-30 06:13:09 -04:00

24 lines
469 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_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