6a18627411
libraries in LDADD so that `make checkdpadd' doesn't report non-errors. Fixed some style bugs (the usual ones for DPADD and LDADD, and misformatting of $FreeBSD$).
17 lines
348 B
Makefile
17 lines
348 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
.PATH: ${SRCDIR}/binutils
|
|
|
|
PROG= objcopy
|
|
SRCS= objcopy.c not-strip.c
|
|
CFLAGS+= -I${.CURDIR}/${RELTOP}/libbinutils
|
|
CFLAGS+= -I${SRCDIR}/binutils
|
|
DPADD= ${RELTOP}/libbinutils/libbinutils.a
|
|
DPADD+= ${RELTOP}/libbfd/libbfd.a
|
|
DPADD+= ${RELTOP}/libiberty/libiberty.a
|
|
LDADD= ${DPADD}
|
|
|
|
.include <bsd.prog.mk>
|