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