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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Linux/MIPS-specific parts of the memory manager.
  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 in the main makefile...
  9. O_TARGET := mm.o
  10. export-objs += ioremap.o umap.o
  11. obj-y += extable.o init.o ioremap.o fault.o loadmmu.o
  12. obj-$(CONFIG_CPU_R3000) += r2300.o
  13. obj-$(CONFIG_CPU_R4300) += r4xx0.o
  14. obj-$(CONFIG_CPU_R4X00) += r4xx0.o
  15. obj-$(CONFIG_CPU_VR41XX) += r4xx0.o
  16. obj-$(CONFIG_CPU_R5000) += r4xx0.o
  17. obj-$(CONFIG_CPU_NEVADA) += r4xx0.o
  18. obj-$(CONFIG_CPU_R5432) += r5432.o
  19. obj-$(CONFIG_CPU_RM7000) += rm7k.o
  20. obj-$(CONFIG_CPU_MIPS32) += mips32.o
  21. obj-$(CONFIG_CPU_MIPS64) += mips32.o
  22. obj-$(CONFIG_SGI_IP22) += umap.o
  23. obj-$(CONFIG_BAGET_MIPS) += umap.o
  24. include $(TOPDIR)/Rules.make