NetBSD/distrib/Makefile
lukem 4eb7fcb80a Don't descend into distrib/notes if MKMAN==no, because
groff (et al) isn't available in $TOOLDIR in that situation.
Fixes PR 30675.
(If we ever implement more specific "don't build groff" or "don't build C++"
build knobs, we can change this to use that.)
2008-08-21 06:17:41 +00:00

25 lines
382 B
Makefile

# $NetBSD: Makefile,v 1.15 2008/08/21 06:17:41 lukem Exp $
.include <bsd.own.mk>
.if ${MKMAN} != "no"
SUBDIR= notes .WAIT
.endif
.if exists(${MACHINE}/miniroot/Makefile.inc)
SUBDIR+= miniroot .WAIT
.endif
.if exists(${RELEASEMACHINE}/Makefile)
SUBDIR+= ${RELEASEMACHINE}
.endif
.if make(obj)
SUBDIR+= utils
.endif
TARGETS+=release
TARGETS+=iso_image
.include <bsd.subdir.mk>