Makefile.inc0 revision 130575
1# $FreeBSD: head/gnu/usr.bin/binutils/Makefile.inc0 130575 2004-06-16 07:09:44Z obrien $
2#
3# This is included explicitly at the top of each sub-Makefile.  We can't
4# use the normal "Makefile.inc" mechanism, because we need some of these
5# definitions before the sub-Makefile is processed.
6
7VERSION=	"2.15 [FreeBSD] 2004-05-23"
8
9TARGET_ARCH?=	${MACHINE_ARCH}
10.if ${TARGET_ARCH} == "amd64"
11BINUTILS_ARCH=x86_64
12.else
13BINUTILS_ARCH=${TARGET_ARCH}
14.endif
15TARGET_TUPLE?=	${BINUTILS_ARCH}-obrien-freebsd
16
17# RELTOP is the relative path to this point in the source or object
18# tree, from any subdirectory of same.  It gets extra "../" prefixes
19# added to it as we descend into subdirectories.
20RELTOP:= ..
21
22RELSRC=	${RELTOP}/../../../contrib/binutils
23SRCDIR=	${.CURDIR}/${RELSRC}
24
25CFLAGS+= -I.
26.if exists(${.CURDIR}/${TARGET_ARCH})
27CFLAGS+= -I${.CURDIR}/${TARGET_ARCH}
28.endif
29CFLAGS+= -I${.CURDIR}
30CFLAGS+= -I${.CURDIR}/${RELTOP}/libbfd/${TARGET_ARCH}
31CFLAGS+= -I${.OBJDIR}/${RELTOP}/libbfd
32CFLAGS+= -I${SRCDIR}/include
33
34.if exists(${.CURDIR}/${TARGET_ARCH})
35.PATH: ${.CURDIR}/${TARGET_ARCH}
36.endif
37
38ARCHS=	${TARGET_ARCH}
39
40.for _arch in ${CROSS_ARCH}
41.if (${ARCHS:R:M${_arch:R}} == "")
42ARCHS+= $(_arch)
43.endif
44.endfor
45
46.for _arch in ${ARCHS}
47.if exists(${.CURDIR}/Makefile.${_arch})
48.include "${.CURDIR}/Makefile.${_arch}"
49.endif
50.endfor
51