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 Hexagon memory management subsy !! 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 uaccess.o vm_fault.o cache.o !! 10 .S.o: 7 obj-y += copy_to_user.o copy_from_user.o vm_tl !! 11 $(CC) $(AFLAGS) -ansi -c -o $*.o $< >> 12 >> 13 O_TARGET := mm.o >> 14 obj-y := fault.o init.o loadmmu.o generic.o extable.o btfixup.o >> 15 >> 16 ifeq ($(CONFIG_SUN4),y) >> 17 obj-y += nosrmmu.o >> 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.