Makefile.inc revision 1.8
1# $NetBSD: Makefile.inc,v 1.8 2002/02/04 00:18:32 thorpej Exp $ 2 3.PATH: ${.CURDIR}/../common 4 5# On the m68000, MACHINE_CPU is "m68k", but we have different 6# target parameters (namely, long double is a different size 7# on the m68000), so we special case the directory name here. 8.if ${MACHINE_ARCH} == "m68000" 9ARCHSUBDIR= m68000 10.else 11ARCHSUBDIR= ${MACHINE_CPU} 12.endif 13 14CPPFLAGS+= -I${.CURDIR}/../arch/${ARCHSUBDIR} 15CPPFLAGS+= -I${.CURDIR}/../common 16 17.if exists(${.CURDIR}/../../Makefile.inc) 18.include "${.CURDIR}/../../Makefile.inc" 19.endif 20