Add binutils if BINFORMAT is elf. This is needed for alpha, and it

works on i386, but is still disabled until you set BINFORMAT.
This commit is contained in:
John Birrell 1998-03-13 19:34:40 +00:00
parent afe4dfa050
commit eb61a18ee7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=34553

View File

@ -1,15 +1,19 @@
# $Id: Makefile,v 1.37 1998/02/19 09:34:59 jb Exp $
# $Id: Makefile,v 1.38 1998/02/20 16:14:37 jkh Exp $
SUBDIR= bc bison cc cpio cvs dc dialog diff diff3 genclass gperf \
grep gzip man patch ptx rcs sdiff send-pr \
sort tar texinfo
.if ${BINFORMAT} == "elf"
SUBDIR+= binutils
.endif
.if ${MACHINE_ARCH} == "i386"
SUBDIR+=as awk gdb groff ld
.endif
.if !defined(NOPERL) && exists(${.CURDIR}/perl)
SUBDIR+=perl
.endif
.endif
.include <bsd.subdir.mk>