Makefile.inc revision 1.8
11.8Sthorpej# $NetBSD: Makefile.inc,v 1.8 2002/02/04 00:18:32 thorpej Exp $ 21.4Sjmc 31.7Sthorpej.PATH: ${.CURDIR}/../common 41.7Sthorpej 51.8Sthorpej# On the m68000, MACHINE_CPU is "m68k", but we have different 61.8Sthorpej# target parameters (namely, long double is a different size 71.8Sthorpej# on the m68000), so we special case the directory name here. 81.8Sthorpej.if ${MACHINE_ARCH} == "m68000" 91.8SthorpejARCHSUBDIR= m68000 101.8Sthorpej.else 111.8SthorpejARCHSUBDIR= ${MACHINE_CPU} 121.8Sthorpej.endif 131.8Sthorpej 141.8SthorpejCPPFLAGS+= -I${.CURDIR}/../arch/${ARCHSUBDIR} 151.7SthorpejCPPFLAGS+= -I${.CURDIR}/../common 161.1Slukem 171.2Sveego.if exists(${.CURDIR}/../../Makefile.inc) 181.1Slukem.include "${.CURDIR}/../../Makefile.inc" 191.1Slukem.endif 20