Deleted Added
full compact
Makefile.inc0 (34502) Makefile.inc0 (35709)
1#
1#
2# $Id: Makefile.inc0,v 1.2 1998/03/12 02:54:39 jdp Exp $
2# $Id: Makefile.inc0,v 1.3 1998/03/12 05:59:22 jb Exp $
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

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

29CFLAGS+= -I${.CURDIR}
30CFLAGS+= -I${.CURDIR}/${RELTOP}/libbfd/${MACHINE_ARCH}
31CFLAGS+= -I${SRCDIR}/include
32
33.if exists(${.CURDIR}/${MACHINE_ARCH})
34.PATH: ${.CURDIR}/${MACHINE_ARCH}
35.endif
36
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

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

29CFLAGS+= -I${.CURDIR}
30CFLAGS+= -I${.CURDIR}/${RELTOP}/libbfd/${MACHINE_ARCH}
31CFLAGS+= -I${SRCDIR}/include
32
33.if exists(${.CURDIR}/${MACHINE_ARCH})
34.PATH: ${.CURDIR}/${MACHINE_ARCH}
35.endif
36
37.if exists(${.CURDIR}/Makefile.${MACHINE_ARCH})
38.include "${.CURDIR}/Makefile.${MACHINE_ARCH}"
37ARCHS= ${MACHINE_ARCH} ${CROSS_TOOLS}
38
39.for _arch in ${ARCHS}
40.if exists(${.CURDIR}/Makefile.${_arch})
41.include "${.CURDIR}/Makefile.${_arch}"
39.endif
42.endif
43.endfor