head     1.1;
branch   1.1.1;
access   ;
symbols  proj:1.1.1.1 start:1.1.1;
locks    ; strict;
comment  @# @;


1.1
date     2006.07.06.10.13.16;  author kaurikim;  state Exp;
branches 1.1.1.1;
next     ;

1.1.1.1
date     2006.07.06.10.13.16;  author kaurikim;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@#
# Makefile for Bluetooth HCI device drivers.
#

O_TARGET	:= bluetooth.o

list-multi	:= hci_uart.o

obj-$(CONFIG_BLUEZ_HCIUSB)	+= hci_usb.o
obj-$(CONFIG_BLUEZ_HCIVHCI)	+= hci_vhci.o

obj-$(CONFIG_BLUEZ_HCIUART)	+= hci_uart.o
uart-y				:= hci_ldisc.o
uart-$(CONFIG_BLUEZ_HCIUART_H4)	+= hci_h4.o

obj-$(CONFIG_BLUEZ_HCIDTL1)	+= dtl1_cs.o
obj-$(CONFIG_BLUEZ_HCIBT3C)	+= bt3c_cs.o
obj-$(CONFIG_BLUEZ_HCIBLUECARD)	+= bluecard_cs.o

include $(TOPDIR)/Rules.make

hci_uart.o: $(uart-y)
	$(LD) -r -o $@@ $(uart-y)
@


1.1.1.1
log
@linux 2.4.20 분석
@
text
@@
