Deleted Added
full compact
Makefile.inc0 (50472) Makefile.inc0 (52927)
1#
1#
2# $FreeBSD: head/gnu/usr.bin/binutils/Makefile.inc0 50472 1999-08-27 23:37:10Z peter $
2# $FreeBSD: head/gnu/usr.bin/binutils/Makefile.inc0 52927 1999-11-06 21:13:47Z jb $
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

--- 24 unchanged lines hidden (view full) ---

35CFLAGS+= -I${.CURDIR}
36CFLAGS+= -I${.CURDIR}/${RELTOP}/libbfd/${BINUTIL_ARCH}
37CFLAGS+= -I${SRCDIR}/include
38
39.if exists(${.CURDIR}/${BINUTIL_ARCH})
40.PATH: ${.CURDIR}/${BINUTIL_ARCH}
41.endif
42
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

--- 24 unchanged lines hidden (view full) ---

35CFLAGS+= -I${.CURDIR}
36CFLAGS+= -I${.CURDIR}/${RELTOP}/libbfd/${BINUTIL_ARCH}
37CFLAGS+= -I${SRCDIR}/include
38
39.if exists(${.CURDIR}/${BINUTIL_ARCH})
40.PATH: ${.CURDIR}/${BINUTIL_ARCH}
41.endif
42
43ARCHS= ${BINUTIL_ARCH} ${CROSS_TOOLS}
43ARCHS= ${BINUTIL_ARCH}
44
44
45.for _arch in ${CROSS_ARCH}
46.if (${ARCHS:R:M${_arch:R}} == "")
47ARCHS+=$(_arch)
48.endif
49.endfor
50
45.for _arch in ${ARCHS}
46.if exists(${.CURDIR}/Makefile.${_arch})
47.include "${.CURDIR}/Makefile.${_arch}"
48.endif
49.endfor
51.for _arch in ${ARCHS}
52.if exists(${.CURDIR}/Makefile.${_arch})
53.include "${.CURDIR}/Makefile.${_arch}"
54.endif
55.endfor