2005-04-16 15:20:36 -07:00
|
|
|
#
|
|
|
|
# Makefile for the Linux Bluetooth subsystem.
|
|
|
|
#
|
|
|
|
|
|
|
|
obj-$(CONFIG_BT) += bluetooth.o
|
|
|
|
obj-$(CONFIG_BT_RFCOMM) += rfcomm/
|
|
|
|
obj-$(CONFIG_BT_BNEP) += bnep/
|
|
|
|
obj-$(CONFIG_BT_CMTP) += cmtp/
|
|
|
|
obj-$(CONFIG_BT_HIDP) += hidp/
|
2014-06-18 16:37:09 +03:00
|
|
|
obj-$(CONFIG_BT_6LOWPAN) += bluetooth_6lowpan.o
|
|
|
|
|
|
|
|
bluetooth_6lowpan-y := 6lowpan.o
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2011-12-21 01:32:09 -02:00
|
|
|
bluetooth-y := af_bluetooth.o hci_core.o hci_conn.o hci_event.o mgmt.o \
|
2015-06-09 17:47:23 +08:00
|
|
|
hci_sock.o hci_sysfs.o l2cap_core.o l2cap_sock.o smp.o lib.o \
|
2017-04-24 13:13:20 +01:00
|
|
|
ecdh_helper.o hci_request.o mgmt_util.o
|
2013-12-11 17:05:37 +02:00
|
|
|
|
2015-06-09 17:47:23 +08:00
|
|
|
bluetooth-$(CONFIG_BT_BREDR) += sco.o
|
2015-07-24 17:12:55 +08:00
|
|
|
bluetooth-$(CONFIG_BT_HS) += a2mp.o amp.o
|
2016-01-08 19:28:58 +01:00
|
|
|
bluetooth-$(CONFIG_BT_LEDS) += leds.o
|
2015-02-14 13:40:06 -08:00
|
|
|
bluetooth-$(CONFIG_BT_DEBUGFS) += hci_debugfs.o
|
2014-12-29 20:48:35 -08:00
|
|
|
bluetooth-$(CONFIG_BT_SELFTEST) += selftest.o
|