2005-04-16 22:20:36 +00: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 13:37:09 +00:00
|
|
|
obj-$(CONFIG_BT_6LOWPAN) += bluetooth_6lowpan.o
|
|
|
|
|
|
|
|
bluetooth_6lowpan-y := 6lowpan.o
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-12-21 03:32:09 +00:00
|
|
|
bluetooth-y := af_bluetooth.o hci_core.o hci_conn.o hci_event.o mgmt.o \
|
2012-05-29 10:59:01 +00:00
|
|
|
hci_sock.o hci_sysfs.o l2cap_core.o l2cap_sock.o smp.o sco.o lib.o \
|
2014-03-04 09:23:02 +00:00
|
|
|
a2mp.o amp.o
|
2013-12-11 15:05:37 +00:00
|
|
|
|
2013-10-02 05:59:25 +00:00
|
|
|
subdir-ccflags-y += -D__CHECK_ENDIAN__
|