minix/external/gpl3/binutils/usr.bin/common/Makefile.prog
Thomas Veerman 18a5822eff Partially import gcc and binutils
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.
2012-06-18 10:54:16 +00:00

58 lines
1.4 KiB
Makefile

# $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}
LDADD+= -lintl
DPADD+= ${LIBINTL}
.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: