diff options
author | jb <jb@FreeBSD.org> | 1998-09-05 08:27:56 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-05 08:27:56 +0000 |
commit | e53f0d692aa35029c88c8185c82b49f34f8ad930 (patch) | |
tree | 8b311c157c7a8d8d2fc51ae6ed732b213241836b | |
parent | 21c8ab7090535da51893ddc0f57a9ecf25031b65 (diff) | |
download | FreeBSD-src-e53f0d692aa35029c88c8185c82b49f34f8ad930.zip FreeBSD-src-e53f0d692aa35029c88c8185c82b49f34f8ad930.tar.gz |
Add support for MACHINE=pc98. This leaves a single legacy entry for
the old aout bootloader.
-rw-r--r-- | sys/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/Makefile b/sys/Makefile index 4728dfb..2fcc7ff 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 |