Only build the old boot loader on i386 if aout. The new loader will

eventually be built if elf.
This commit is contained in:
John Birrell 1998-08-27 04:26:40 +00:00
parent 13bcc37c02
commit 960bddf112
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38576

View File

@ -1,7 +1,11 @@
# $Id: Makefile,v 1.8 1997/07/13 07:36:20 jkh Exp $
# $Id: Makefile,v 1.9 1998/02/20 07:37:08 jb Exp $
.if defined(MACHINE_PC98) && ${MACHINE_PC98} == "yes"
SUBDIR= pc98/boot
.elif exists(${MACHINE}/boot) && ${MACHINE} == "i386"
.if ${OBJFORMAT} == "aout"
SUBDIR= ${MACHINE}/boot
.endif
.elif exists(${MACHINE}/boot)
SUBDIR= ${MACHINE}/boot
.endif