mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 04:11:56 +00:00
To present a common interface to both software and hardware Link Layers the API in ll.h now lives in its own separate include/ folder. Change-Id: I2b0ab0d11b47b9c35a5759bcc30f347e6c616648 Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
18 lines
989 B
Makefile
18 lines
989 B
Makefile
ccflags-$(CONFIG_BLUETOOTH_LL_SW) += -I$(srctree)/subsys/bluetooth/controller/util
|
|
ccflags-$(CONFIG_BLUETOOTH_LL_SW) += -I$(srctree)/subsys/bluetooth/controller/hal
|
|
ccflags-$(CONFIG_BLUETOOTH_LL_SW) += -I$(srctree)/subsys/bluetooth/controller/ticker
|
|
ccflags-$(CONFIG_BLUETOOTH_LL_SW) += -I$(srctree)/subsys/bluetooth/controller/ll_sw
|
|
ccflags-$(CONFIG_BLUETOOTH_LL_SW) += -I$(srctree)/subsys/bluetooth/controller/include
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += util/mem.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += util/memq.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += util/mayfly.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += util/util.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += hal/nrf5/cntr.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += hal/nrf5/rand.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += hal/nrf5/ecb.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += hal/nrf5/radio.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += ticker/ticker.o
|
|
obj-$(CONFIG_BLUETOOTH_LL_SW) += ll_sw/
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hci/hci_driver.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hci/hci.o
|