diff options
author | John Birrell <jb@FreeBSD.org> | 1998-08-27 04:26:40 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 1998-08-27 04:26:40 +0000 |
commit | 960bddf11299c4cdb385777c85a85c7a0e96e405 (patch) | |
tree | 3403747c7de3177de6fcc34f15697e0b18ab229f /sys/Makefile | |
parent | 13bcc37c0233d321e580cd3d82f6a958d07fea89 (diff) | |
download | src-test2-960bddf11299c4cdb385777c85a85c7a0e96e405.tar.gz src-test2-960bddf11299c4cdb385777c85a85c7a0e96e405.zip |
Notes
Diffstat (limited to 'sys/Makefile')
-rw-r--r-- | sys/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
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 |