Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.13 15 lines 310 B view raw
1# Makefile for xmon 2 3subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror 4 5GCOV_PROFILE := n 6UBSAN_SANITIZE := n 7 8ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) 9 10obj-y += xmon.o nonstdio.o spr_access.o 11 12ifdef CONFIG_XMON_DISASSEMBLY 13obj-y += ppc-dis.o ppc-opc.o 14obj-$(CONFIG_SPU_BASE) += spu-dis.o spu-opc.o 15endif