There's no need to maintain a separate module for this anymore. Subsequent patches will have further simplifications thanks to this being now handled in a single c-file. Change-Id: I4510c9f72b121e1e5fd19eeb8b5d5ddf2f4bfffe Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
16 lines
220 B
Makefile
16 lines
220 B
Makefile
obj-y = hci_core.o
|
|
|
|
ifeq ($(CONFIG_BLUETOOTH_CONN),y)
|
|
obj-y += conn.o \
|
|
l2cap.o \
|
|
att.o \
|
|
gatt.o \
|
|
uuid.o
|
|
|
|
ifeq ($(CONFIG_BLUETOOTH_SMP),y)
|
|
obj-y += smp.o \
|
|
keys.o
|
|
else
|
|
obj-y += smp_null.o
|
|
endif
|
|
endif
|