mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 12:43:03 +00:00
This is also useful for Broadcaster and Observer roles and shouldn't depend on connection support. Change-Id: I85003253455c3949344e26d24a5fb3a718115947 Signed-off-by: Szymon Janc <ext.szymon.janc@tieto.com>
17 lines
219 B
Makefile
17 lines
219 B
Makefile
obj-y = hci_core.o \
|
|
uuid.o
|
|
|
|
ifeq ($(CONFIG_BLUETOOTH_CONN),y)
|
|
obj-y += conn.o \
|
|
l2cap.o \
|
|
att.o \
|
|
gatt.o
|
|
|
|
ifeq ($(CONFIG_BLUETOOTH_SMP),y)
|
|
obj-y += smp.o \
|
|
keys.o
|
|
else
|
|
obj-y += smp_null.o
|
|
endif
|
|
endif
|