aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/binutils/Makefile.inc0
blob: 2a0abfea8a0087c3d5c5cb85f2effebc2252b9cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# $FreeBSD: src/gnu/usr.bin/binutils/Makefile.inc0,v 1.5.2.1 1999/08/29 14:31:51 peter Exp $
#

#
# 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.
#

VERSION=	2.9.1

# 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.
RELTOP:=	..

RELSRC=		${RELTOP}/../../../contrib/binutils
SRCDIR=		${.CURDIR}/${RELSRC}

CFLAGS+=	-D_GNU_SOURCE

# We use "-I-" because without it our yacc-generated parser tries to
# use GNU's bison-generated header files.
CFLAGS+=	-I- -I.
.if exists(${.CURDIR}/${MACHINE_ARCH})
CFLAGS+=	-I${.CURDIR}/${MACHINE_ARCH}
.endif
CFLAGS+=	-I${.CURDIR}
CFLAGS+=	-I${.CURDIR}/${RELTOP}/libbfd/${MACHINE_ARCH}
CFLAGS+=	-I${SRCDIR}/include

.if exists(${.CURDIR}/${MACHINE_ARCH})
.PATH: ${.CURDIR}/${MACHINE_ARCH}
.endif

ARCHS=		${MACHINE_ARCH} ${CROSS_TOOLS}

.for _arch in ${ARCHS}
.if exists(${.CURDIR}/Makefile.${_arch})
.include "${.CURDIR}/Makefile.${_arch}"
.endif
.endfor