fca5dcd483
This factors out the common bits of arch/powerpc/xmon/start_*.c into a new nonstdio.c, and removes some stuff that was supposed to make xmon's I/O routines somewhat stdio-like but was never used. It also makes the parsing of the xmon= command line option common, so that ppc32 can now use xmon={off,on,early} also. Signed-off-by: Paul Mackerras <paulus@samba.org>
12 lines
269 B
Makefile
12 lines
269 B
Makefile
# Makefile for xmon
|
|
|
|
ifdef CONFIG_PPC64
|
|
EXTRA_CFLAGS += -mno-minimal-toc
|
|
endif
|
|
|
|
obj-$(CONFIG_8xx) += start_8xx.o
|
|
obj-$(CONFIG_6xx) += start_32.o
|
|
obj-$(CONFIG_4xx) += start_32.o
|
|
obj-$(CONFIG_PPC64) += start_64.o
|
|
obj-y += xmon.o ppc-dis.o ppc-opc.o setjmp.o nonstdio.o
|