zephyr/subsys/net/ip/l2/Makefile
Luiz Augusto von Dentz 1bcd12d0d3 net: bt: Add shell support
This adds a shell module called "net_bt" that exposes Bluetooth L2
management commands.

Change-Id: Ia6da1d38cfd51502119758a8f6abbb6d1cd31743
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
2017-01-13 14:36:42 +00:00

10 lines
310 B
Makefile

ccflags-y += -I${ZEPHYR_BASE}/subsys/net/ip
obj-$(CONFIG_NET_L2_DUMMY) += dummy.o
obj-${CONFIG_NET_L2_ETHERNET} += ethernet.o
obj-$(CONFIG_NET_L2_IEEE802154) += ieee802154/
obj-$(CONFIG_NET_L2_BLUETOOTH) += bluetooth.o
obj-$(CONFIG_NET_L2_BLUETOOTH_SHELL) += bluetooth_shell.o
obj-${CONFIG_NET_ARP} += arp.o