c566d4623b
- Enable installing binutils from the base system. - Import texinfo which is required for the binutils tools to be compiled. - Also adapted the fetch rules to correctly generate the gitignore files for gcc, and allow the case of multiple modules in the same directory, as found in gnu/dist. Warning: This patch has an entry in docs/UPDATING Change-Id: Ib781734e8fd7f9c6265fa65d62ba2cf3fccbc5ba
40 lines
953 B
Makefile
40 lines
953 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}
|
|
|
|
.if !defined(__MINIX)
|
|
LDADD= -lintl
|
|
DPADD= ${LIBINTL}
|
|
.endif # !defined(__MINIX)
|
|
|
|
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>
|