zephyr/subsys/bluetooth/controller/Makefile
Carles Cufi a7f6656998 Bluetooth: controller: Move ll.h to an include folder
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>
2017-03-21 17:05:42 -07:00

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