blob: f3d494a4fd9ba2a627a6109b692d2e8f423de2a1 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001# SPDX-License-Identifier: GPL-2.0
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002#
3# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004#
5
6obj-y := clone.o mmu.o process.o syscall.o uaccess.o
7
8# clone.o is in the stub, so it can't be built with profiling
9# GCC hardened also auto-enables -fpic, but we need %ebx so it can't work ->
10# disable it
11
12CFLAGS_clone.o := $(CFLAGS_NO_HARDENING)
13UNPROFILE_OBJS := clone.o
14
David Brazdil0f672f62019-12-10 10:32:29 +000015KCOV_INSTRUMENT := n
16
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017include arch/um/scripts/Makefile.rules