minix/external/gpl3/binutils/lib/libopcodes/Makefile
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

40 lines
864 B
Makefile

# $NetBSD: Makefile,v 1.4 2011/09/25 04:32:46 christos Exp $
NOLINKLIB= # defined
NOLINT= # defined
NOMAN= # defined
NOPROFILE= # defined
NOCLANGERROR= # defined
.include <bsd.own.mk>
LIB= opcodes
BFD_MACHINE_ARCH?= ${MACHINE_ARCH}
.if exists(${.CURDIR}/arch/${BFD_MACHINE_ARCH}/defs.mk)
.include "${.CURDIR}/arch/${BFD_MACHINE_ARCH}/defs.mk"
DIST= ${NETBSDSRCDIR}/external/gpl3/binutils/dist
SHLIB_MAJOR= 5
SHLIB_MINOR= 0
GCPPFLAGS= ${G_archdefs} ${G_DEFS} ${G_INCLUDES} ${G_TDEFAULTS}
CPPFLAGS+= -I${.CURDIR}/arch/${BFD_MACHINE_ARCH} \
-I${.CURDIR}/../libbfd/arch/${BFD_MACHINE_ARCH} \
-I${DIST}/include -I. \
-I${DIST}/bfd ${GCPPFLAGS:M-D*} \
${GCPPFLAGS:M-I*:N-I.*}
GSRCS= ${G_BFD_MACHINES}
SRCS= ${GSRCS:.lo=.c} ${G_libopcodes_la_SOURCES}
.PATH: ${DIST}/opcodes
.include <bsd.lib.mk>
.else
.include <bsd.prog.mk> # do nothing
.endif