01db5e69c1
the wild, slippery orgy commence! Gary Jennejohn, too studly for his own good, has finally come through with the new, improved gdb 4.13. This gdb features: o kgdb support - if this works (and I urge folks to test it), we can finally purge the old and hateful version of kgdb from our source tree. o attach/detach support. See comments in README.FreeBSD for more details. o Well, it's newer. Our previous version was 4.11. Comments and flames to gj, of course! :-) Thanks, Gary. Much appreciated. The previous state of gdb/kgdb has been a thorn in all of our sides for some time.. Submitted by: gj
27 lines
588 B
Makefile
27 lines
588 B
Makefile
LIB = bfd
|
|
|
|
SRCS = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
|
|
archures.c coff-i386.c aout32.c \
|
|
srec.c \
|
|
ecoff.c ecofflink.c \
|
|
coffgen.c format.c \
|
|
section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
|
|
trad-core.c \
|
|
i386aout.c \
|
|
freebsd386.c \
|
|
cpu-i386.c \
|
|
elf.c elf32.c elf32-i386.c \
|
|
hash.c linker.c
|
|
|
|
CFLAGS+= -I$(.CURDIR)/. -I$(.CURDIR)/../gdb/.
|
|
CFLAGS+= -DDEFAULT_VECTOR=freebsd386_vec -DSELECT_VECS='&freebsd386_vec' \
|
|
-DSELECT_ARCHITECTURES='bfd_i386_arch' -DTRAD_CORE
|
|
|
|
NOPROFILE=no
|
|
NOPIC=no
|
|
|
|
install:
|
|
@echo -n
|
|
|
|
.include <bsd.lib.mk>
|