1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1998-03-01 23:41:17 +00:00
|
|
|
#
|
|
|
|
# This is included explicitly at the top of each sub-Makefile. We can't
|
|
|
|
# use the normal "Makefile.inc" mechanism, because we need some of these
|
|
|
|
# definitions before the sub-Makefile is processed.
|
|
|
|
|
2002-01-27 13:02:31 +00:00
|
|
|
VERSION= "2.12.0 pre-release snap 20020127 [FreeBSD]"
|
1998-03-01 23:41:17 +00:00
|
|
|
|
2001-10-15 01:18:51 +00:00
|
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
2001-10-14 00:58:59 +00:00
|
|
|
BINUTIL_ARCH= ${TARGET_ARCH}
|
1999-03-01 04:01:57 +00:00
|
|
|
|
1998-03-01 23:41:17 +00:00
|
|
|
# RELTOP is the relative path to this point in the source or object
|
|
|
|
# tree, from any subdirectory of same. It gets extra "../" prefixes
|
|
|
|
# added to it as we descend into subdirectories.
|
2001-10-14 00:58:59 +00:00
|
|
|
RELTOP:= ..
|
1998-03-01 23:41:17 +00:00
|
|
|
|
2001-10-14 00:58:59 +00:00
|
|
|
RELSRC= ${RELTOP}/../../../contrib/binutils
|
|
|
|
SRCDIR= ${.CURDIR}/${RELSRC}
|
1998-03-01 23:41:17 +00:00
|
|
|
|
2001-10-14 00:58:59 +00:00
|
|
|
CFLAGS+= -D_GNU_SOURCE
|
1998-03-01 23:41:17 +00:00
|
|
|
|
|
|
|
# We use "-I-" because without it our yacc-generated parser tries to
|
|
|
|
# use GNU's bison-generated header files.
|
2001-10-14 00:58:59 +00:00
|
|
|
CFLAGS+= -I- -I.
|
1999-03-01 04:01:57 +00:00
|
|
|
.if exists(${.CURDIR}/${BINUTIL_ARCH})
|
2001-10-14 00:58:59 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/${BINUTIL_ARCH}
|
1998-03-12 02:55:43 +00:00
|
|
|
.endif
|
2001-10-14 00:58:59 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
CFLAGS+= -I${.CURDIR}/${RELTOP}/libbfd/${BINUTIL_ARCH}
|
|
|
|
CFLAGS+= -I${SRCDIR}/include
|
1998-03-12 02:55:43 +00:00
|
|
|
|
1999-03-01 04:01:57 +00:00
|
|
|
.if exists(${.CURDIR}/${BINUTIL_ARCH})
|
|
|
|
.PATH: ${.CURDIR}/${BINUTIL_ARCH}
|
1998-03-12 02:55:43 +00:00
|
|
|
.endif
|
|
|
|
|
2001-10-14 00:58:59 +00:00
|
|
|
ARCHS= ${BINUTIL_ARCH}
|
1999-11-06 21:13:47 +00:00
|
|
|
|
|
|
|
.for _arch in ${CROSS_ARCH}
|
|
|
|
.if (${ARCHS:R:M${_arch:R}} == "")
|
2001-10-14 00:58:59 +00:00
|
|
|
ARCHS+= $(_arch)
|
1999-11-06 21:13:47 +00:00
|
|
|
.endif
|
|
|
|
.endfor
|
1998-05-04 21:10:56 +00:00
|
|
|
|
|
|
|
.for _arch in ${ARCHS}
|
|
|
|
.if exists(${.CURDIR}/Makefile.${_arch})
|
|
|
|
.include "${.CURDIR}/Makefile.${_arch}"
|
1998-03-12 02:55:43 +00:00
|
|
|
.endif
|
1998-05-04 21:10:56 +00:00
|
|
|
.endfor
|