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
408 B
Makefile
21 lines
408 B
Makefile
# $Id: Makefile,v 1.3 1998/05/01 14:48:04 bde Exp $
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
GDBDIR= ${.CURDIR}/../../../../contrib/gdb
|
|
.PATH: ${GDBDIR}/gdb/gdbserver
|
|
.PATH: ${GDBDIR}/gdb
|
|
|
|
PROG= gdbreplay
|
|
NOMAN= yes
|
|
|
|
SRCS= gdbreplay.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>
|