blob: de478bebb0fd95f6df468d69479dc0dc6732fe19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.39 2003/10/15 07:47:08 mickey Exp $
# $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $
.include <bsd.own.mk>
SUBDIR+= ../egcs/gcc
SUBDIR+= cvs groff lynx rcs sendbug binutils
# most ports use binutils gas and ld, some do not (yet).
.if ${ELF_TOOLCHAIN:L} == "no"
SUBDIR+= gas ld
.endif
# Do these last; texinfo builds the info 'dir' file, perl must be after binutils
SUBDIR+= perl texinfo
.include <bsd.subdir.mk>
|