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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Acorn block device drivers.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definition is now inherited from the
  9. # parent makefile.
  10. #
  11. USE_STANDARD_AS_RULE := true
  12. O_TARGET := acorn-block.o
  13. obj-y :=
  14. obj-m :=
  15. obj-n :=
  16. obj- :=
  17. export-objs :=
  18. list-multi := fd1772_mod.o mfmhd_mod.o
  19. fd1772_mod-objs := fd1772.o fd1772dma.o
  20. mfmhd_mod-objs := mfmhd.o mfm.o
  21. obj-$(CONFIG_BLK_DEV_FD1772) += fd1772_mod.o
  22. obj-$(CONFIG_BLK_DEV_MFM) += mfmhd_mod.o
  23. include $(TOPDIR)/Rules.make
  24. fd1772_mod.o: $(fd1772_mod-objs)
  25. $(LD) -r -o $@ $(fd1772_mod-objs)
  26. mfmhd_mod.o: $(mfmhd_mod-objs)
  27. $(LD) -r -o $@ $(mfmhd_mod-objs)