Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Bluetooth subsystem
  3. #
  4. O_TARGET    := bluetooth.o
  5. list-multi  := bluez.o
  6. export-objs := syms.o
  7. bluez-objs  := af_bluetooth.o hci_core.o hci_conn.o hci_event.o hci_sock.o lib.o syms.o
  8. obj-$(CONFIG_BLUEZ) += bluez.o
  9. obj-$(CONFIG_BLUEZ_L2CAP) += l2cap.o
  10. obj-$(CONFIG_BLUEZ_SCO) += sco.o
  11. subdir-$(CONFIG_BLUEZ_BNEP) += bnep
  12. ifeq ($(CONFIG_BLUEZ_BNEP),y)
  13. obj-y += bnep/bnep.o
  14. endif
  15. include $(TOPDIR)/Rules.make
  16. bluez.o: $(bluez-objs)
  17. $(LD) -r -o $@ $(bluez-objs)