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

Linux/Unix编程

开发平台:

Unix_Linux

  1. # $Id: Makefile,v 1.38 2000/12/15 00:41:22 davem Exp $
  2. # Makefile for the linux Sparc-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. .S.o:
  10. $(CC) $(AFLAGS) -ansi -c -o $*.o $<
  11. O_TARGET := mm.o
  12. obj-y := fault.o init.o loadmmu.o generic.o extable.o btfixup.o
  13. ifeq ($(CONFIG_SUN4),y)
  14. obj-y += nosrmmu.o
  15. else
  16. obj-y += srmmu.o iommu.o io-unit.o hypersparc.o viking.o 
  17. tsunami.o swift.o
  18. endif
  19. ifdef CONFIG_HIGHMEM
  20. obj-y += highmem.o
  21. endif
  22. ifdef CONFIG_SMP
  23. obj-y += nosun4c.o
  24. else
  25. obj-y += sun4c.o
  26. endif
  27. include $(TOPDIR)/Rules.make