Deleted Added
full compact
Makefile.inc0 (52927) Makefile.inc0 (54748)
1#
1#
2# $FreeBSD: head/gnu/usr.bin/binutils/Makefile.inc0 52927 1999-11-06 21:13:47Z jb $
2# $FreeBSD: head/gnu/usr.bin/binutils/Makefile.inc0 54748 1999-12-17 15:50:45Z marcel $
3#
4
5#
6# This is included explicitly at the top of each sub-Makefile. We can't
7# use the normal "Makefile.inc" mechanism, because we need some of these
8# definitions before the sub-Makefile is processed.
9#
10
11VERSION= 2.9.1
3#
4
5#
6# This is included explicitly at the top of each sub-Makefile. We can't
7# use the normal "Makefile.inc" mechanism, because we need some of these
8# definitions before the sub-Makefile is processed.
9#
10
11VERSION= 2.9.1
12TARGET_ARCH?= ${MACHINE_ARCH}
12
13
13.if ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb"
14.if ${TARGET_ARCH} == "mipsel" || ${TARGET_ARCH} == "mipseb"
14BINUTIL_ARCH=mips
15.else
15BINUTIL_ARCH=mips
16.else
16BINUTIL_ARCH=${MACHINE_ARCH}
17BINUTIL_ARCH=${TARGET_ARCH}
17.endif
18
19# RELTOP is the relative path to this point in the source or object
20# tree, from any subdirectory of same. It gets extra "../" prefixes
21# added to it as we descend into subdirectories.
22RELTOP:= ..
23
24RELSRC= ${RELTOP}/../../../contrib/binutils

--- 31 unchanged lines hidden ---
18.endif
19
20# RELTOP is the relative path to this point in the source or object
21# tree, from any subdirectory of same. It gets extra "../" prefixes
22# added to it as we descend into subdirectories.
23RELTOP:= ..
24
25RELSRC= ${RELTOP}/../../../contrib/binutils

--- 31 unchanged lines hidden ---