Makefile.inc revision 1.9
11.9Sthorpej#	$NetBSD: Makefile.inc,v 1.9 2002/02/04 08:37:37 thorpej Exp $
21.9Sthorpej
31.9Sthorpej.include <bsd.own.mk>
41.4Sjmc
51.7Sthorpej.PATH:		${.CURDIR}/../common
61.7Sthorpej
71.8Sthorpej# On the m68000, MACHINE_CPU is "m68k", but we have different
81.8Sthorpej# target parameters (namely, long double is a different size
91.8Sthorpej# on the m68000), so we special case the directory name here.
101.8Sthorpej.if ${MACHINE_ARCH} == "m68000"
111.8SthorpejARCHSUBDIR=	m68000
121.8Sthorpej.else
131.8SthorpejARCHSUBDIR=	${MACHINE_CPU}
141.8Sthorpej.endif
151.8Sthorpej
161.8SthorpejCPPFLAGS+=	-I${.CURDIR}/../arch/${ARCHSUBDIR}
171.7SthorpejCPPFLAGS+=	-I${.CURDIR}/../common
181.1Slukem
191.2Sveego.if exists(${.CURDIR}/../../Makefile.inc)
201.1Slukem.include "${.CURDIR}/../../Makefile.inc"
211.1Slukem.endif
22