4979e034c1
Looking in src/Makfile* it looks like all the "WANT_AOUT" support has been removed, maybe these should just go away... Note that the a.out `ld' reaches over into src/contrib/gcc for libiberty bits. This is biting us because the libiberty bits have evolved beyond what the a.out `ld' can handle. This change fixes the broken world, but only because very few have "WANT_AOUT" defined.
21 lines
358 B
Makefile
21 lines
358 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= awk bc binutils cc cpio dc dialog diff diff3 gperf \
|
|
grep groff gzip man patch ptx rcs sdiff send-pr sort tar texinfo
|
|
|
|
.if !defined(NO_CVS)
|
|
SUBDIR+=cvs
|
|
.endif
|
|
|
|
.if defined(WANT_AOUT)
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+=as ld
|
|
.endif
|
|
.endif
|
|
|
|
.if !defined(NOPERL) && exists(${.CURDIR}/perl)
|
|
SUBDIR+=perl
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|