Add support for MACHINE=pc98. This leaves a single legacy entry for

the old aout bootloader.
This commit is contained in:
John Birrell 1998-09-05 08:27:56 +00:00
parent db36ef8f02
commit 7cfc8475b8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38851

View file

@ -1,12 +1,7 @@
# $Id: Makefile,v 1.9 1998/02/20 07:37:08 jb Exp $
# $Id: Makefile,v 1.10 1998/08/27 04:26:40 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)
# This is the old aout only boot loader.
.if exists(${MACHINE}/boot) && ${OBJFORMAT} == "aout"
SUBDIR= ${MACHINE}/boot
.endif