blob: 8e9556c5a26af428bf84f909ba0b238b8af80232 (
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
27
28
29
30
31
32
|
# $NetBSD: Makefile,v 1.135 2011/06/21 04:52:50 mrg Exp $
.include <bsd.own.mk>
SUBDIR+= bc
SUBDIR+= c89 c99
SUBDIR+= dc diffutils gkermit
SUBDIR+= rcs send-pr texinfo
.if ${MKBSDGREP} == "no"
SUBDIR+= grep
.endif
.if ${MKGROFF} != "no"
SUBDIR+= groff
.endif
SUBDIR+= gettext
.if ${MKGDB} != "no"
.if ${HAVE_GDB} == "6"
SUBDIR+= gdb6
.endif
.endif
.if ${HAVE_GCC} == 4
.if ${MKGCCCMDS} != "no"
SUBDIR+= gcc4
.endif
.endif
.include <bsd.subdir.mk>
|