From 960bddf11299c4cdb385777c85a85c7a0e96e405 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Thu, 27 Aug 1998 04:26:40 +0000 Subject: [PATCH] Only build the old boot loader on i386 if aout. The new loader will eventually be built if elf. --- sys/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/Makefile b/sys/Makefile index ebf9ca256991..4728dfb7178b 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -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