1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Fix buidling of boot blocks for pc98 with new links.

Submitted by: nyan@
This commit is contained in:
Warner Losh 2005-04-03 04:58:15 +00:00
parent df3a103dc6
commit 722cb08d74
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144563

View File

@ -92,15 +92,23 @@ install:
boot1 boot2 ${DESTDIR}${BINDIR}
# If it's not there, don't consider it a target
.if exists(${.CURDIR}/../../../i386/include)
.if exists(${.CURDIR}/../../../pc98/include)
beforedepend ${OBJS}: machine
machine:
ln -sf ${.CURDIR}/../../../i386/include machine
ln -sf ${.CURDIR}/../../../pc98/include machine
.endif
CLEANFILES+= machine
.if exists(${.CURDIR}/../../../i386/include)
beforedepend ${OBJS}: i386
i386:
ln -sf ${.CURDIR}/../../../i386/include i386
.endif
CLEANFILES+= machine i386
.include "${.CURDIR}/../../../conf/kern.mk"
.include <bsd.prog.mk>