mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix buidling of boot blocks for pc98 with new links.
Submitted by: nyan@
This commit is contained in:
parent
df3a103dc6
commit
722cb08d74
1 changed files with 11 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue