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
59 lines
1.5 KiB
Text
59 lines
1.5 KiB
Text
# $NetBSD: Makefile.prog,v 1.1 2009/08/18 20:22:08 skrll Exp $
|
|
#
|
|
# Common Makefile fragment for a binutils program.
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TOP= ${NETBSDSRCDIR}/external/gpl3/binutils
|
|
|
|
.include "${.CURDIR}/../common/Makefile.inc"
|
|
.include "${.CURDIR}/../common/arch/${MACHINE_ARCH}/defs.mk"
|
|
|
|
# Might end in "-new" in GNU makefile
|
|
XPROG= ${PROG:c++filt=cxxfilt}
|
|
BUPROG= ${G_PROGRAMS:M${XPROG}*:S/-/_/}
|
|
|
|
SRCS= ${G_${BUPROG}_OBJECTS:.o=.c} \
|
|
${G_${BUPROG}_DEPENDENCIES:M*.o:.o=.c}
|
|
MAN= ${G_man_MANS:M${PROG}.1}
|
|
|
|
CPPFLAGS+= -I${.CURDIR}/../common/arch/${MACHINE_ARCH}
|
|
|
|
.if !defined(__MINIX)
|
|
LDADD+= -lintl
|
|
DPADD+= ${LIBINTL}
|
|
.endif # !defined(__MINIX)
|
|
|
|
.if !empty(G_${BUPROG}_DEPENDENCIES:M*/libopcodes*)
|
|
OPCODESOBJ!= cd ${TOP}/${BFDSUBDIR}/libopcodes && ${PRINTOBJDIR}
|
|
LDADD+= -L${OPCODESOBJ} -lopcodes
|
|
.if ${MKPICLIB} != "no"
|
|
DPADD+= ${OPCODESOBJ}/libopcodes_pic.a
|
|
.else
|
|
DPADD+= ${OPCODESOBJ}/libopcodes.a
|
|
.endif
|
|
.endif
|
|
|
|
.if !empty(G_${BUPROG}_DEPENDENCIES:M*/libbfd*)
|
|
BFDOBJ!= cd ${TOP}/${BFDSUBDIR}/libbfd && ${PRINTOBJDIR}
|
|
LDADD+= -L${BFDOBJ} -lbfd
|
|
.if ${MKPICLIB} != "no"
|
|
DPADD+= ${BFDOBJ}/libbfd_pic.a
|
|
.else
|
|
DPADD+= ${BFDOBJ}/libbfd.a
|
|
.endif
|
|
.endif
|
|
|
|
.if !empty(G_${BUPROG}_DEPENDENCIES:M*/libiberty*)
|
|
IBERTYOBJ!= cd ${TOP}/${BFDSUBDIR}/libiberty && ${PRINTOBJDIR}
|
|
LDADD+= -L${IBERTYOBJ} -liberty
|
|
DPADD+= ${IBERTYOBJ}/libiberty.a
|
|
.endif
|
|
|
|
.PATH: ${DIST}/binutils ${DIST}/binutils/doc
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
# Override the .y.c and .y.l rules *after* <bsd.prog.mk>
|
|
.y.c .l.c:
|