mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 03:45:21 +00:00
Ever since we expose ECDH as a more generic API that's not bound to SMP we shouldn't be requiring selcting SMP in the configuration for it to be available. Move it outside of the BLUETOOTH_SMP and BLUETOOTH_CONN dependencies. Change-Id: I4ac15ff92b1d4fcf3061a487718d364aa7d43bc8 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
28 lines
489 B
Makefile
28 lines
489 B
Makefile
ccflags-y +=-I$(srctree)/include/drivers
|
|
|
|
obj-$(CONFIG_BLUETOOTH_STACK_HCI) = \
|
|
hci_core.o \
|
|
uuid.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_DEBUG) += log.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_DEBUG_MONITOR) += monitor.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_TINYCRYPT_ECC) += hci_ecc.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
|
|
|
|
obj-$(CONFIG_BLUETOOTH_BREDR) += keys.o l2cap_br.o
|
|
endif
|