77dfb966d9
Move our old a.out utils to /usr/libexec/aout. Enable binutils and put the utils in /usr/libexec/elf Enable objformat, a little helper program that calls the right utils based on /etc/objformat and $OBJFORMAT. This will enable the ELF generating tools. Remember that this is only step one, the system is still compiled and run in a.out format ONLY. Problem left to solve: The BSD manpages wins over the GNU equivalents as the are installed last. We need to distinguish between the manpages somehow...
15 lines
350 B
Makefile
15 lines
350 B
Makefile
# $Id: Makefile,v 1.41 1998/05/12 23:09:36 jb Exp $
|
|
|
|
SUBDIR= awk bc binutils bison cc cpio cvs dc dialog diff diff3 genclass gperf \
|
|
grep groff gzip man patch ptx rcs sdiff send-pr sort tar texinfo
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+=as gdb ld
|
|
.endif
|
|
|
|
.if !defined(NOPERL) && exists(${.CURDIR}/perl)
|
|
SUBDIR+=perl
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|