Makefile 606 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
#
# 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/
10 11 12
obj-$(CONFIG_BT_6LOWPAN) += bluetooth_6lowpan.o

bluetooth_6lowpan-y := 6lowpan.o
L
Linus Torvalds 已提交
13

14
bluetooth-y := af_bluetooth.o hci_core.o hci_conn.o hci_event.o mgmt.o \
15
	hci_sock.o hci_sysfs.o l2cap_core.o l2cap_sock.o smp.o sco.o lib.o \
16
	a2mp.o amp.o ecc.o hci_request.o
17

18
bluetooth-$(CONFIG_BT_DEBUGFS) += hci_debugfs.o
19 20
bluetooth-$(CONFIG_BT_SELFTEST) += selftest.o

21
subdir-ccflags-y += -D__CHECK_ENDIAN__