blob: e937afa790b5c303d17dccb52794928d97f50f16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $FreeBSD$
GENSRCS+= xm.h
LIBSRCS+= armfbsd-nat.c
LIBSRCS+= arm-tdep.c armfbsd-tdep.c solib.c solib-svr4.c
.if !defined(GDB_CROSS_DEBUGGER)
LIBSRC+= fbsd-threads.c
.endif
nm.h:
#XXX this should be arm/nm-fbsd.h but won't until it's merged into the gdb repo
echo '#include "nm-fbsd.h"' > ${.TARGET}
tm.h:
#XXX this should be arm/tm-fbsd.h
echo '#include "tm-fbsd.h"' > ${.TARGET}
xm.h:
#XXX this should be arm/xm-fbsd.h
echo '#include "xm-fbsd.h"' > ${.TARGET}
|