Makefile.inc revision 1.1 1 # $NetBSD: Makefile.inc,v 1.1 2005/09/13 01:44:08 christos Exp $
2
3 # compat sources
4
5 CPPFLAGS+=-I${NETBSDSRCDIR}/sys
6
7 .include "${.CURDIR}/compat/db/Makefile.inc"
8 .include "${.CURDIR}/compat/gen/Makefile.inc"
9 .include "${.CURDIR}/compat/stdlib/Makefile.inc"
10 .include "${.CURDIR}/compat/sys/Makefile.inc"
11
12 # XXX: Conditional until all archs are converted.
13 .if exists(${.CURDIR}/compat/arch/${ARCHSUBDIR}/Makefile.inc)
14 COMPATARCHDIR=${.CURDIR}/compat/arch/${ARCHSUBDIR}
15 .PATH: ${COMPATARCHDIR}/gen ${COMPATARCHDIR}/sys
16 .include "${.CURDIR}/compat/arch/${ARCHSUBDIR}/Makefile.inc"
17 .endif
18