diff options
author | asami <asami@FreeBSD.org> | 1996-06-14 11:02:28 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-06-14 11:02:28 +0000 |
commit | 36a1932601c730683d263ee933dd90cd6dae96bf (patch) | |
tree | d76ce0bf0a31500c82596831333ff034e969773b /sys/Makefile | |
parent | 5fa995752f02a42fcb2b0ca54149fef141f98060 (diff) | |
download | FreeBSD-src-36a1932601c730683d263ee933dd90cd6dae96bf.zip FreeBSD-src-36a1932601c730683d263ee933dd90cd6dae96bf.tar.gz |
The Great PC98 Merge.
All new code is "#ifdef PC98"ed so this should make no difference to
PC/AT (and its clones) users.
Ok'd by: core
Submitted by: FreeBSD(98) development team
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 d2205c0..bfb5e9d 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -1,5 +1,9 @@ -# $Id: Makefile,v 1.3 1994/08/25 13:54:28 paul Exp $ +# $Id: Makefile,v 1.4 1995/12/26 13:57:32 bde Exp $ +.if defined(MACHINE_PC98) && ${MACHINE_PC98} == "yes" +SUBDIR= pc98/boot +.else SUBDIR= ${MACHINE}/boot +.endif .include <bsd.subdir.mk> |