^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) # SPDX-License-Identifier: GPL-2.0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) #
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) # Makefile for the Linux Bluetooth subsystem.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) #
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) obj-$(CONFIG_BT) += bluetooth.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) obj-$(CONFIG_BT_RFCOMM) += rfcomm/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) obj-$(CONFIG_BT_BNEP) += bnep/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) obj-$(CONFIG_BT_CMTP) += cmtp/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) obj-$(CONFIG_BT_HIDP) += hidp/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) obj-$(CONFIG_BT_6LOWPAN) += bluetooth_6lowpan.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) bluetooth_6lowpan-y := 6lowpan.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) bluetooth-y := af_bluetooth.o hci_core.o hci_conn.o hci_event.o mgmt.o \
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) hci_sock.o hci_sysfs.o l2cap_core.o l2cap_sock.o smp.o lib.o \
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) ecdh_helper.o hci_request.o mgmt_util.o mgmt_config.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) bluetooth-$(CONFIG_BT_BREDR) += sco.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) bluetooth-$(CONFIG_BT_HS) += a2mp.o amp.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) bluetooth-$(CONFIG_BT_LEDS) += leds.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) bluetooth-$(CONFIG_BT_MSFTEXT) += msft.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) bluetooth-$(CONFIG_BT_DEBUGFS) += hci_debugfs.o
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) bluetooth-$(CONFIG_BT_SELFTEST) += selftest.o