Makefile 486 Bytes
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1
#
2
# Makefile for the Linux Bluetooth HCI device drivers.
Linus Torvalds's avatar
Linus Torvalds committed
3 4
#

5
obj-$(CONFIG_BT_HCIUSB)		+= hci_usb.o
6 7 8 9 10
obj-$(CONFIG_BT_HCIVHCI)	+= hci_vhci.o
obj-$(CONFIG_BT_HCIUART)	+= hci_uart.o
obj-$(CONFIG_BT_HCIDTL1)	+= dtl1_cs.o
obj-$(CONFIG_BT_HCIBT3C)	+= bt3c_cs.o
obj-$(CONFIG_BT_HCIBLUECARD)	+= bluecard_cs.o
11

12
hci_uart-y				:= hci_ldisc.o
13 14
hci_uart-$(CONFIG_BT_HCIUART_H4)	+= hci_h4.o
hci_uart-$(CONFIG_BT_HCIUART_BCSP)	+= hci_bcsp.o
15
hci_uart-objs				:= $(hci_uart-y)
16

17
include $(TOPDIR)/Rules.make