37 lines
773 B
Makefile
37 lines
773 B
Makefile
# $NetBSD: Makefile,v 1.3 2003/12/04 12:18:57 mrg Exp $
|
|
|
|
NOLINKLIB= # defined
|
|
NOLINT= # defined
|
|
NOMAN= # defined
|
|
NOPROFILE= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= opcodes
|
|
|
|
.if exists(${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk)
|
|
.include "${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk"
|
|
|
|
DIST= ${NETBSDSRCDIR}/gnu/dist/binutils
|
|
|
|
SHLIB_MAJOR= 1
|
|
SHLIB_MINOR= 0
|
|
|
|
GCPPFLAGS= ${G_archdefs} ${G_DEFS} ${G_INCLUDES} ${G_TDEFAULTS}
|
|
CPPFLAGS+= -I${.CURDIR}/arch/${MACHINE_ARCH} \
|
|
-I${.CURDIR}/../libbfd/arch/${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
|