mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 07:33:14 +00:00
Enables API to register PSM server on BREDR transport. Adds l2cap_br.c file responsible for BREDR specific functionality to build path based on Kconfig selection. Change-Id: I92823b0207ab0da96bfb813353de9f95fa5dd0f4 Origin: Original Signed-off-by: Arkadiusz Lichwa <arkadiusz.lichwa@tieto.com>
24 lines
397 B
Makefile
24 lines
397 B
Makefile
ccflags-y +=-I$(srctree)/include/drivers
|
|
|
|
obj-$(CONFIG_BLUETOOTH_STACK_HCI) = \
|
|
hci_core.o \
|
|
uuid.o
|
|
|
|
obj-$(CONFIG_BLUETOOTH_DEBUG_MONITOR) += monitor.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
|