Makefile (a0afd4f7c1ff8cb7a9747150500f8ce081fbcfc9) | Makefile (2c1cfb2db61474040a394962872f4cde613f89fb) |
---|---|
1# Makefile for the linux Sparc-specific parts of the memory manager. 2# 3 4asflags-y := -ansi 5ccflags-y := -Werror 6 7obj-$(CONFIG_SPARC64) += ultra.o tlb.o tsb.o gup.o 8obj-y += fault_$(BITS).o --- 4 unchanged lines hidden (view full) --- 13obj-$(CONFIG_SPARC_LEON)+= leon_mm.o 14 15# Only used by sparc64 16obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 17 18# Only used by sparc32 19obj-$(CONFIG_HIGHMEM) += highmem.o 20 | 1# Makefile for the linux Sparc-specific parts of the memory manager. 2# 3 4asflags-y := -ansi 5ccflags-y := -Werror 6 7obj-$(CONFIG_SPARC64) += ultra.o tlb.o tsb.o gup.o 8obj-y += fault_$(BITS).o --- 4 unchanged lines hidden (view full) --- 13obj-$(CONFIG_SPARC_LEON)+= leon_mm.o 14 15# Only used by sparc64 16obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 17 18# Only used by sparc32 19obj-$(CONFIG_HIGHMEM) += highmem.o 20 |
21ifdef CONFIG_SMP | |
22obj-$(CONFIG_SPARC32) += nosun4c.o | 21obj-$(CONFIG_SPARC32) += nosun4c.o |
23else 24obj-$(CONFIG_SPARC32) += sun4c.o 25endif | |