d65f6f7009
. common/include/arch/i386 is not actually an imported sys/arch/i386/include but leftover Minix files; remove and move to include/ . move include/ufs to sys/ufs, where it came from, now that we have a sys/ hierarchy . move mdocml/ to external/bsd/, now we have that . single sys/arch/i386/stand/ import for boot stuff
24 lines
514 B
Makefile
24 lines
514 B
Makefile
# $NetBSD: Makefile.inc,v 1.12 2010/07/25 19:16:18 joerg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
VERSION!= cd ${.PARSEDIR}/dist && ${MAKE} -V VERSION
|
|
|
|
CPPFLAGS+= -DVERSION=\"${VERSION}\" -DUGLY
|
|
CPPFLAGS+= -DOSNAME=\"Minix\"
|
|
|
|
.if (${HOSTPROG:U} == "")
|
|
CPPFLAGE+= -DHAVE_STRLCAT -DHAVE_STRLCPY
|
|
.endif
|
|
|
|
|
|
DISTDIR:= ${.PARSEDIR}/dist
|
|
|
|
.PATH: ${DISTDIR}
|
|
|
|
.for _LIB in man mdoc roff
|
|
MDOCMLOBJDIR.${_LIB} != cd ${.PARSEDIR}/lib/lib${_LIB} && ${PRINTOBJDIR}
|
|
MDOCMLLIB.${_LIB}= ${MDOCMLOBJDIR.${_LIB}}/lib${_LIB}.a
|
|
.endfor
|
|
|
|
WARNS?= 4
|