Blame view

drivers/bluetooth/Makefile 977 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  #
  # Makefile for the Linux Bluetooth HCI device drivers.
  #
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
6
7
8
9
10
11
12
  obj-$(CONFIG_BT_HCIVHCI)	+= hci_vhci.o
  obj-$(CONFIG_BT_HCIUART)	+= hci_uart.o
  obj-$(CONFIG_BT_HCIBCM203X)	+= bcm203x.o
  obj-$(CONFIG_BT_HCIBPA10X)	+= bpa10x.o
  obj-$(CONFIG_BT_HCIBFUSB)	+= bfusb.o
  obj-$(CONFIG_BT_HCIDTL1)	+= dtl1_cs.o
  obj-$(CONFIG_BT_HCIBT3C)	+= bt3c_cs.o
  obj-$(CONFIG_BT_HCIBLUECARD)	+= bluecard_cs.o
  obj-$(CONFIG_BT_HCIBTUART)	+= btuart_cs.o
5e23b923d   Marcel Holtmann   [Bluetooth] Add g...
13
  obj-$(CONFIG_BT_HCIBTUSB)	+= btusb.o
ddbaf13e3   Marcel Holtmann   [Bluetooth] Add g...
14
  obj-$(CONFIG_BT_HCIBTSDIO)	+= btsdio.o
9670d80a9   Vikram Kandukuri   Bluetooth: Add DF...
15
  obj-$(CONFIG_BT_ATH3K)		+= ath3k.o
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
16
  obj-$(CONFIG_BT_MRVL)		+= btmrvl.o
789221ecc   Bing Zhao   Bluetooth: Add Ma...
17
  obj-$(CONFIG_BT_MRVL_SDIO)	+= btmrvl_sdio.o
363907af8   Pavan Savoy   Bluetooth: btwili...
18
  obj-$(CONFIG_BT_WILINK)		+= btwilink.o
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
19

08b0b0ce8   Marcel Holtmann   Bluetooth: Fix co...
20
21
  btmrvl-y			:= btmrvl_main.o
  btmrvl-$(CONFIG_DEBUG_FS)	+= btmrvl_debugfs.o
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
24
  hci_uart-y				:= hci_ldisc.o
  hci_uart-$(CONFIG_BT_HCIUART_H4)	+= hci_h4.o
  hci_uart-$(CONFIG_BT_HCIUART_BCSP)	+= hci_bcsp.o
166d2f6a4   Ohad Ben-Cohen   [Bluetooth] Add U...
25
  hci_uart-$(CONFIG_BT_HCIUART_LL)	+= hci_ll.o
b3190df62   Suraj Sumangala   Bluetooth: Suppor...
26
  hci_uart-$(CONFIG_BT_HCIUART_ATH3K)	+= hci_ath.o
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
  hci_uart-objs				:= $(hci_uart-y)