blob: bae7f7becff619da59c12e4ddde30e63770a278b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.14 2017/06/05 23:45:23 christos Exp $
.include <bsd.own.mk>
.if (${MKCVS} != "no")
SUBDIR+= xcvs
.endif
.if (${MKLVM} != "no")
SUBDIR+= lvm2
.endif
.if ${MKBSDGREP} == "no"
SUBDIR+= grep
.endif
.if ${MKGROFF} != "no"
SUBDIR+= groff
.endif
.if ${MKDTC} != "no"
SUBDIR+= dtc
.endif
SUBDIR+= gettext diffutils texinfo rcs send-pr
.include <bsd.subdir.mk>
|