Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Linux IEEE 1394 implementation
  3. #
  4. O_TARGET := ieee1394drv.o
  5. export-objs := ieee1394_core.o ohci1394.o
  6. list-multi := ieee1394.o
  7. ieee1394-objs := ieee1394_core.o ieee1394_transactions.o hosts.o 
  8.  highlevel.o csr.o nodemgr.o
  9. obj-$(CONFIG_IEEE1394) += ieee1394.o
  10. obj-$(CONFIG_IEEE1394_PCILYNX) += pcilynx.o
  11. obj-$(CONFIG_IEEE1394_OHCI1394) += ohci1394.o
  12. obj-$(CONFIG_IEEE1394_VIDEO1394) += video1394.o
  13. obj-$(CONFIG_IEEE1394_RAWIO) += raw1394.o
  14. obj-$(CONFIG_IEEE1394_SBP2) += sbp2.o
  15. include $(TOPDIR)/Rules.make
  16. ieee1394.o: $(ieee1394-objs)
  17. $(LD) -r -o $@ $(ieee1394-objs)