18 lines
362 B
Makefile
18 lines
362 B
Makefile
# $Id: Makefile,v 1.1.1.1 1997/04/25 22:25:50 pst Exp $
|
|
|
|
GDBDIR= ${.CURDIR}/../../../../contrib/gdb
|
|
.PATH: ${GDBDIR}/gdb/gdbserver
|
|
.PATH: ${GDBDIR}/gdb
|
|
.PATH: ${GDBDIR}/opcodes
|
|
|
|
PROG= gdbserver
|
|
BINDIR= /usr/bin
|
|
|
|
SRCS= remote-utils.c utils.c server.c
|
|
SRCS+= low-fbsd.c
|
|
|
|
CFLAGS+=-I${.CURDIR}/../gdb -I${.CURDIR}/../bfd
|
|
CFLAGS+=-DNO_MMALLOC
|
|
|
|
.include <bsd.prog.mk>
|