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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # drivers/scsi/aic7xxx/Makefile
  3. #
  4. # Makefile for the Linux aic7xxx SCSI driver.
  5. #
  6. O_TARGET := aic7xxx_drv.o
  7. list-multi := aic7xxx_mod.o
  8. obj-$(CONFIG_SCSI_AIC7XXX) += aic7xxx_mod.o
  9. #EXTRA_CFLAGS += -g
  10. # Platform Specific Files
  11. AIC7XXX_OBJS = aic7xxx_linux.o 
  12. AIC7XXX_OBJS += aic7xxx_proc.o aic7770_linux.o
  13. #PCI Specific Platform Files
  14. ifeq ($(CONFIG_PCI),y)
  15. AIC7XXX_OBJS += aic7xxx_linux_pci.o
  16. endif
  17. # Core Files
  18. AIC7XXX_OBJS += aic7xxx.o aic7xxx_93cx6.o aic7770.o
  19. #PCI Specific Core Files
  20. ifeq ($(CONFIG_PCI),y)
  21. AIC7XXX_OBJS += aic7xxx_pci.o
  22. endif
  23. # Override our module desitnation
  24. MOD_TARGET = aic7xxx.o
  25. include $(TOPDIR)/Rules.make
  26. aic7xxx_mod.o: aic7xxx_seq.h aic7xxx_reg.h $(AIC7XXX_OBJS)
  27. $(LD) $(LD_RFLAG) -r -o $@ $(AIC7XXX_OBJS)
  28. ifeq ($(CONFIG_AIC7XXX_BUILD_FIRMWARE),y)
  29. aic7xxx_seq.h aic7xxx_reg.h: aic7xxx.seq aic7xxx.reg aicasm/aicasm
  30. aicasm/aicasm -I. -r aic7xxx_reg.h -o aic7xxx_seq.h aic7xxx.seq
  31. endif
  32. aicasm/aicasm: aicasm/*.[chyl]
  33. $(MAKE) -C aicasm