mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
solib-svr4.c to the MD makefiles because they are native files for alpha and sparc64, but target files for amd64, i386 and ia64. Note that kgdb(1) does not yet build as a cross-debugger due to libkvm.
19 lines
459 B
Makefile
19 lines
459 B
Makefile
# $FreeBSD$
|
|
|
|
GENSRCS+= xm.h
|
|
.if !defined(GDB_CROSS_DEBUGGER)
|
|
LIBSRCS+= fbsd-proc.c fbsd-threads.c gcore.c
|
|
LIBSRCS+= amd64-nat.c amd64bsd-nat.c amd64fbsd-nat.c
|
|
.endif
|
|
LIBSRCS+= solib.c solib-svr4.c
|
|
LIBSRCS+= amd64-tdep.c amd64fbsd-tdep.c i386-tdep.c i386bsd-tdep.c \
|
|
i386fbsd-tdep.c i387-tdep.c
|
|
|
|
nm.h:
|
|
echo '#include "i386/nm-fbsd64.h"' > ${.TARGET}
|
|
|
|
tm.h:
|
|
echo '#include "i386/tm-fbsd.h"' > ${.TARGET}
|
|
|
|
xm.h:
|
|
echo '#include "i386/xm-i386.h"' > ${.TARGET}
|