68a9ebbe8c
to coordinate fixes for this contrib code.
27 lines
517 B
Makefile
27 lines
517 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
# Not elf specific so don't install in /usr/libexec/elf
|
|
BINDIR=/usr/bin
|
|
|
|
GDBDIR= ${.CURDIR}/../../../../contrib/gdb
|
|
.PATH: ${GDBDIR}/gdb/gdbserver
|
|
.PATH: ${GDBDIR}/gdb
|
|
|
|
PROG= gdbreplay
|
|
NOMAN= yes
|
|
|
|
SRCS= gdbreplay.c
|
|
|
|
# XXX Don't die on warnings, until the maintainer has a chance to fix them.
|
|
NO_WERROR= yes
|
|
|
|
CFLAGS+= -I${.CURDIR}/../gdb
|
|
CFLAGS+= -I${GDBDIR}/gdb
|
|
CFLAGS+= -I${GDBDIR}/gdb/config
|
|
CFLAGS+= -I${GDBDIR}/gdb/gdbserver
|
|
CFLAGS+= -DNO_MMALLOC
|
|
|
|
.include <bsd.prog.mk>
|