16 lines
321 B
Makefile
16 lines
321 B
Makefile
# $NetBSD: Makefile,v 1.4 2017/09/17 00:00:39 sevan Exp $
|
|
.include <bsd.own.mk>
|
|
|
|
# We need more modular flag e.g. we can add dtrace to osnet later
|
|
|
|
.if (${MKDTRACE} != "no")
|
|
SUBDIR+= dtracetoolkit
|
|
.endif
|
|
|
|
.if ( ${MKZFS} != "no" || ${MKDTRACE} != "no" || ${MKCTF} != "no")
|
|
SUBDIR+= osnet
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|
|
|