7f3d7f20f8
comming 2.10 release.
19 lines
425 B
Makefile
19 lines
425 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
.PATH: ${SRCDIR}/binutils
|
|
|
|
PROG= objdump
|
|
SRCS= objdump.c prdbg.c
|
|
CFLAGS+= -I${.CURDIR}/${RELTOP}/libbinutils
|
|
CFLAGS+= -I${SRCDIR}/binutils
|
|
CFLAGS+= -DBFD_VERSION=\"${VERSION}\"
|
|
DPADD= ${RELTOP}/libbinutils/libbinutils.a
|
|
DPADD+= ${RELTOP}/libopcodes/libopcodes.a
|
|
DPADD+= ${RELTOP}/libbfd/libbfd.a
|
|
DPADD+= ${RELTOP}/libiberty/libiberty.a
|
|
LDADD= ${DPADD}
|
|
|
|
.include <bsd.prog.mk>
|