Makefile revision 1.41
1#	$OpenBSD: Makefile,v 1.41 2004/01/23 18:21:13 espie Exp $
2#	$NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $
3
4.include <bsd.own.mk>
5USE_GCC3?=No
6
7.if make(obj)
8SUBDIR+=	gcc ../egcs/gcc
9.else
10.  if ${USE_GCC3:L} == "yes"
11SUBDIR+=	gcc
12.  else
13SUBDIR+=	../egcs/gcc
14.  endif
15.endif
16
17SUBDIR+=	cxxfilt cvs groff lynx rcs sendbug binutils
18
19# most ports use binutils gas and ld, some do not (yet).
20.if ${ELF_TOOLCHAIN:L} == "no"
21SUBDIR+=	gas ld
22.endif
23
24# Do these last; texinfo builds the info 'dir' file, perl must be after binutils
25SUBDIR+=	perl texinfo
26
27.include <bsd.subdir.mk>
28