blob: f863cc676654f9114171ca5e64531e1010a22bd1 (
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.129 2009/04/08 16:29:18 christos Exp $
# for OBJECT_FMT
.include <bsd.own.mk>
SUBDIR+= bc
.if ${MKBINUTILS} != "no"
SUBDIR+= binutils
.endif
SUBDIR+= c89 c99
SUBDIR+= dc diffutils gkermit grep
SUBDIR+= groff rcs send-pr texinfo
SUBDIR+= gettext
.if ${MKGDB} != "no"
.if ${HAVE_GDB} == "6"
SUBDIR+= gdb6
.endif
.endif
.if ${MKGCCCMDS} != "no"
SUBDIR+= gcc4
.endif
.include <bsd.subdir.mk>
|