1# SPDX-License-Identifier: GPL-2.0 2# Makefile for xmon 3 4# Disable clang warning for using setjmp without setjmp.h header 5subdir-ccflags-y := $(call cc-disable-warning, builtin-requires-header) 6 7GCOV_PROFILE := n 8UBSAN_SANITIZE := n 9 10# Disable ftrace for the entire directory 11ORIG_CFLAGS := $(KBUILD_CFLAGS) 12KBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS)) 13 14ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) 15 16obj-y += xmon.o nonstdio.o spr_access.o 17 18ifdef CONFIG_XMON_DISASSEMBLY 19obj-y += ppc-dis.o ppc-opc.o 20obj-$(CONFIG_SPU_BASE) += spu-dis.o spu-opc.o 21endif 22