1b9112ea6b
Remove /sys/boot from legacy-build. Add btxld to build-tools. In src/sys/Makefile: Add /sys/boot for i386 ELF. I'm still not sure why the new boot code was being built along with the legacy stuff, which meant a completely wrong default environment for it. This may well still be the wrong way to go about this, but it can't work all that much worse than it has been.
17 lines
475 B
Makefile
17 lines
475 B
Makefile
# $Id: Makefile,v 1.12 1998/10/04 00:42:08 gpalmer Exp $
|
|
|
|
# This is the old aout only boot loader.
|
|
.if exists(${MACHINE}/boot) && ${OBJFORMAT} == "aout"
|
|
SUBDIR= ${MACHINE}/boot
|
|
.elif exists(boot) && ${MACHINE} == "i386" && ${OBJFORMAT} == "elf"
|
|
SUBDIR= boot
|
|
.endif
|
|
|
|
.if exists(boot) && ${MACHINE_ARCH} == "alpha"
|
|
SUBDIR= boot
|
|
.endif
|
|
|
|
HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
|
|
|
|
.include <bsd.subdir.mk>
|