1# $FreeBSD$
2
3.include <src.opts.mk>
4
5SUBDIR=	doc\
6	libiberty \
7	libbfd \
8	libopcodes \
9	libbinutils \
10	as \
11	objdump
12
13# When we use ld.lld as /usr/bin/ld, do not install the non-ifunc-capable
14# GNU binutils 2.17.50 ld.
15.if ${MK_LLD_IS_LD} == "no"
16SUBDIR+=ld
17.endif
18
19SUBDIR_DEPEND_libbinutils=libbfd		# for bfdver.h
20SUBDIR_DEPEND_as=libbfd libiberty libopcodes
21SUBDIR_DEPEND_ld=libbfd libiberty
22SUBDIR_DEPEND_objdump=libbfd libiberty libbinutils libopcodes
23
24.if !make(install)
25SUBDIR_PARALLEL=
26.endif
27
28.include <bsd.subdir.mk>
29