zephyr/subsys/bluetooth/controller/ll_sw/Makefile
Vinayak Kariappa Chettimada 09368217d4 Bluetooth: controller: Fast enc setup with ccflags -Ofast
To meet CPU time usage restricts inside radio ISR on nRF51
SoCs, use ccflags -Ofast when using fast encryption setup
implementation in the controller.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
2017-09-07 14:36:30 -05:00

12 lines
417 B
Makefile

ccflags-y += -I$(srctree)/subsys/bluetooth/controller/include
ccflags-y += -I$(srctree)/subsys/bluetooth/controller
ccflags-y += -I$(srctree)/subsys/bluetooth
ccflags-$(CONFIG_BT_CTLR_FAST_ENC) += -Ofast
obj-y += crypto.o ctrl.o ll.o ll_filter.o
obj-$(CONFIG_BT_BROADCASTER) += ll_adv.o
obj-$(CONFIG_BT_OBSERVER) += ll_scan.o
obj-$(CONFIG_BT_CENTRAL) += ll_master.o
obj-$(CONFIG_BT_CTLR_DTM) += ll_test.o