Test for the existance of ${MACHINE}/boot before trying to build it.

The PC98 stuff in this makefile should be removed and that system
should build with MACHINE=pc98 and MACHINE_ARCH=i386.
This commit is contained in:
John Birrell 1998-02-20 07:37:08 +00:00
parent d371a23e0b
commit 756985ab45
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33660

View File

@ -1,8 +1,8 @@
# $Id: Makefile,v 1.7 1997/02/22 09:27:56 peter Exp $
# $Id: Makefile,v 1.8 1997/07/13 07:36:20 jkh Exp $
.if defined(MACHINE_PC98) && ${MACHINE_PC98} == "yes"
SUBDIR= pc98/boot
.else
.elif exists(${MACHINE}/boot)
SUBDIR= ${MACHINE}/boot
.endif