From 7cfc8475b806df1983cf3cb1e6ed360c40d840f6 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Sat, 5 Sep 1998 08:27:56 +0000 Subject: [PATCH] Add support for MACHINE=pc98. This leaves a single legacy entry for the old aout bootloader. --- sys/Makefile | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/sys/Makefile b/sys/Makefile index 4728dfb7178..2fcc7ff3cfd 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -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 -- 2.45.2