1# SPDX-License-Identifier: GPL-2.0 2# Makefile for xmon 3 4subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror 5 6GCOV_PROFILE := n 7UBSAN_SANITIZE := n 8 9# Disable ftrace for the entire directory 10ORIG_CFLAGS := $(KBUILD_CFLAGS) 11KBUILD_CFLAGS = $(subst -mno-sched-epilog,,$(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS))) 12 13ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) 14 15obj-y += xmon.o nonstdio.o spr_access.o 16 17ifdef CONFIG_XMON_DISASSEMBLY 18obj-y += ppc-dis.o ppc-opc.o 19obj-$(CONFIG_SPU_BASE) += spu-dis.o spu-opc.o 20endif 21