1 # SPDX-License-Identifier: GPL-2.0-only !! 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. 2 # 3 # 3 # Makefile for the Linux/Xtensa-specific parts !! 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). 4 # 7 # >> 8 # Note 2! The CFLAGS definition is now in the main makefile... 5 9 6 obj-y := init.o misc.o !! 10 .S.o: 7 obj-$(CONFIG_PFAULT) += fault.o !! 11 $(CC) $(AFLAGS) -ansi -c -o $*.o $< 8 obj-$(CONFIG_MMU) += cache.o ioremap.o m !! 12 9 obj-$(CONFIG_HIGHMEM) += highmem.o !! 13 O_TARGET := mm.o 10 obj-$(CONFIG_KASAN) += kasan_init.o !! 14 obj-y := fault.o init.o loadmmu.o generic.o extable.o btfixup.o 11 !! 15 12 KASAN_SANITIZE_fault.o := n !! 16 ifeq ($(CONFIG_SUN4),y) 13 KASAN_SANITIZE_kasan_init.o := n !! 17 obj-y += nosrmmu.o 14 KASAN_SANITIZE_mmu.o := n !! 18 else >> 19 obj-y += srmmu.o iommu.o io-unit.o hypersparc.o viking.o \ >> 20 tsunami.o swift.o >> 21 endif >> 22 >> 23 ifdef CONFIG_HIGHMEM >> 24 obj-y += highmem.o >> 25 endif >> 26 >> 27 ifdef CONFIG_SMP >> 28 obj-y += nosun4c.o >> 29 else >> 30 obj-y += sun4c.o >> 31 endif >> 32 >> 33 include $(TOPDIR)/Rules.make
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.