zephyr/subsys/net/Makefile
Jukka Rissanen e3adbf845c net: Add hostname setting to Kconfig
User can configure hostname of the device in Kconfig. This can
be used by mDNS responder to answer <hostname>.local queries.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2017-10-17 08:36:39 -04:00

15 lines
237 B
Makefile

obj-$(CONFIG_NET_BUF) += buf.o
obj-$(CONFIG_NET_HOSTNAME_ENABLE) += hostname.o
ifeq ($(CONFIG_NETWORKING),y)
ifeq ($(CONFIG_NET_L2_RAW_CHANNEL),y)
obj-y += ip/net_pkt.o
else
obj-y += ip/
endif
endif
include lib/Makefile
obj-y += lib/