18a5822eff
They are used as build tools for cross compilation. This import does not include the full distribution. Rather, it sports a shell script that will download and patch the distribution when compiled from /usr/src/tools (yet to be committed). This part of the source tree is only necessary for cross compilation. It's not used or compiled for native builds.
38 lines
904 B
Makefile
38 lines
904 B
Makefile
# $NetBSD: Makefile,v 1.5 2009/11/10 10:24:50 skrll Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TOP= ${NETBSDSRCDIR}/external/gpl3/binutils
|
|
|
|
.include "${.CURDIR}/../common/Makefile.inc"
|
|
.include "${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk"
|
|
|
|
PROG= gprof
|
|
SRCS= ${G_gprof_OBJECTS:.o=.c}
|
|
CPPFLAGS+= -I${.CURDIR}/arch/${MACHINE_ARCH}
|
|
|
|
LDADD= -lintl
|
|
DPADD= ${LIBINTL}
|
|
|
|
BFDOBJ!= cd ${TOP}/${BFDSUBDIR}/libbfd && ${PRINTOBJDIR}
|
|
LDADD+= -L${BFDOBJ} -lbfd
|
|
.if ${MKPICLIB} != "no"
|
|
DPADD+= ${BFDOBJ}/libbfd_pic.a
|
|
.else
|
|
DPADD+= ${BFDOBJ}/libbfd.a
|
|
.endif
|
|
|
|
IBERTYOBJ!= cd ${TOP}/${BFDSUBDIR}/libiberty && ${PRINTOBJDIR}
|
|
LDADD+= -L${IBERTYOBJ} -liberty
|
|
DPADD+= ${IBERTYOBJ}/libiberty.a
|
|
|
|
TEXINFO= ${G_TEXINFOS}
|
|
COMMONOBJDIR!= cd ${TOP}/usr.bin/common && ${PRINTOBJDIR}
|
|
INFOFLAGS= -I${COMMONOBJDIR} -I${DIST}/libiberty
|
|
|
|
gprof.info: bfdver.texi
|
|
|
|
.PATH: ${COMMONOBJDIR} ${DIST}/gprof
|
|
|
|
.include <bsd.prog.mk>
|
|
.include <bsd.info.mk>
|