f14fb60209
* Updating common/lib * Updating lib/csu * Updating lib/libc * Updating libexec/ld.elf_so * Corrected test on __minix in featuretest to actually follow the meaning of the comment. * Cleaned up _REENTRANT-related defintions. * Disabled -D_REENTRANT for libfetch * Removing some unneeded __NBSD_LIBC defines and tests Change-Id: Ic1394baef74d11b9f86b312f5ff4bbc3cbf72ce2
23 lines
758 B
Makefile
23 lines
758 B
Makefile
# $NetBSD: Makefile.inc,v 1.7 2012/01/22 18:36:16 christos Exp $
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/sys
|
|
|
|
COMPATARCHDIR=${COMPATDIR}/arch/${ARCHSUBDIR}
|
|
.PATH: ${COMPATARCHDIR}/gen ${COMPATARCHDIR}/sys
|
|
|
|
.if !defined(__MINIX)
|
|
.include "${COMPATDIR}/db/Makefile.inc"
|
|
.include "${COMPATDIR}/locale/Makefile.inc"
|
|
.endif #!defined(__MINIX)
|
|
.include "${COMPATDIR}/gen/Makefile.inc"
|
|
.if !defined(__MINIX)
|
|
.include "${COMPATDIR}/net/Makefile.inc"
|
|
.include "${COMPATDIR}/rpc/Makefile.inc"
|
|
.include "${COMPATDIR}/stdio/Makefile.inc"
|
|
.if !defined(__MINIX)
|
|
.include "${COMPATDIR}/stdlib/Makefile.inc"
|
|
.endif #!defined(__MINIX)
|
|
.include "${COMPATDIR}/sys/Makefile.inc"
|
|
.include "${COMPATDIR}/time/Makefile.inc"
|
|
.include "${COMPATARCHDIR}/Makefile.inc"
|
|
.endif #!defined(__MINIX)
|