Paul Mackerras | f78541d | 2005-10-28 22:53:37 +1000 | [diff] [blame] | 1 | # Makefile for xmon |
2 | |||||
Michael Ellerman | ba55bd7 | 2009-06-09 20:48:51 +0000 | [diff] [blame] | 3 | subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror |
4 | |||||
Michael Ellerman | a15098c | 2009-08-09 19:02:51 +0000 | [diff] [blame] | 5 | GCOV_PROFILE := n |
Daniel Axtens | bf76f73 | 2016-01-20 15:00:58 -0800 | [diff] [blame] | 6 | UBSAN_SANITIZE := n |
Michael Ellerman | a15098c | 2009-08-09 19:02:51 +0000 | [diff] [blame] | 7 | |
Anton Blanchard | 1fbe9cf | 2012-11-26 17:41:08 +0000 | [diff] [blame] | 8 | ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) |
Michael Ellerman | e042604 | 2006-11-23 00:46:45 +0100 | [diff] [blame] | 9 | |
Michael Ellerman | 33b5cd6 | 2012-10-09 04:20:32 +0000 | [diff] [blame] | 10 | obj-y += xmon.o nonstdio.o |
Michael Ellerman | e042604 | 2006-11-23 00:46:45 +0100 | [diff] [blame] | 11 | |
12 | ifdef CONFIG_XMON_DISASSEMBLY | ||||
13 | obj-y += ppc-dis.o ppc-opc.o | ||||
Arnd Bergmann | e055595 | 2006-11-27 19:18:55 +0100 | [diff] [blame] | 14 | obj-$(CONFIG_SPU_BASE) += spu-dis.o spu-opc.o |
Michael Ellerman | e042604 | 2006-11-23 00:46:45 +0100 | [diff] [blame] | 15 | endif |