blob: 3c05cd5f027dfe13171a1c2b7a5f6d260968c81d (
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
33
34
35
|
# $NetBSD: Makefile,v 1.124 2006/06/23 21:51:42 christos Exp $
# for OBJECT_FMT
.include <bsd.own.mk>
SUBDIR+= bc
.if ${MKBINUTILS} != "no"
SUBDIR+= binutils
.endif
SUBDIR+= c89
.if ${MKCVS} != "no"
SUBDIR+= xcvs
.endif
SUBDIR+= dc diffutils grep
SUBDIR+= groff rcs send-pr texinfo
SUBDIR+= gettext
.if ${MKGDB} != "no"
.if ${HAVE_GDB} == "5"
SUBDIR+= gdb53
.else
SUBDIR+= gdb6
.endif
.endif
.if ${MKGCCCMDS} != "no"
.if ${HAVE_GCC} == "3"
SUBDIR+= gcc3
.else
SUBDIR+= gcc4
.endif
.endif
.include <bsd.subdir.mk>
|