18 lines
397 B
Makefile
18 lines
397 B
Makefile
|
# $Id: Makefile,v 1.13.2.1 1997/02/02 20:46:32 joerg 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 -I${GDBDIR}/gdb -I${GDBDIR}/bfd
|
||
|
CFLAGS+=-DNO_MMALLOC
|
||
|
|
||
|
.include <bsd.prog.mk>
|