Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 #
0003 # Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
0004 #
0005 
0006 obj-y := clone.o mmu.o process.o syscall.o uaccess.o
0007 
0008 # clone.o is in the stub, so it can't be built with profiling
0009 # GCC hardened also auto-enables -fpic, but we need %ebx so it can't work ->
0010 # disable it
0011 
0012 CFLAGS_clone.o := $(CFLAGS_NO_HARDENING)
0013 UNPROFILE_OBJS := clone.o
0014 
0015 KCOV_INSTRUMENT := n
0016 
0017 include arch/um/scripts/Makefile.rules