e3af075499
* Update build for gdbserver and gdbreplay to work under binutils * Fix gdbserver to use PT_GETREGS etc to access registers, removing the dependancy on the u-area. * Make gdbserver work on the alpha.
21 lines
435 B
Makefile
21 lines
435 B
Makefile
# $Id: Makefile,v 1.3 1998/05/01 14:48:06 bde Exp $
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
GDBDIR= ${.CURDIR}/../../../../contrib/gdb
|
|
.PATH: ${GDBDIR}/gdb/gdbserver
|
|
.PATH: ${GDBDIR}/gdb
|
|
|
|
PROG= gdbserver
|
|
|
|
SRCS= remote-utils.c utils.c server.c
|
|
SRCS+= low-fbsd.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../gdb/${MACHINE_ARCH}
|
|
CFLAGS+= -I${GDBDIR}/gdb
|
|
CFLAGS+= -I${GDBDIR}/gdb/config
|
|
CFLAGS+= -I${GDBDIR}/gdb/gdbserver
|
|
CFLAGS+= -DNO_MMALLOC
|
|
|
|
.include <bsd.prog.mk>
|