Don't decend into the subdirectory mbr_bootsel except i386,

since it currently doesn't contain MI thing and not compile
on ofppc box (thanks Wolfgang) and probably on bebox box.
This commit is contained in:
enami 1999-09-25 04:18:20 +00:00
parent bc2048a94e
commit 62d623bfc4
1 changed files with 4 additions and 3 deletions

View File

@ -1,16 +1,17 @@
# $NetBSD: Makefile,v 1.13 1999/07/02 17:48:26 sakamoto Exp $
# $NetBSD: Makefile,v 1.14 1999/09/25 04:18:20 enami Exp $
SUBDIR= mbr
.if ${MACHINE} == "i386"
SUBDIR+= mbr_bootsel
.endif
.if (${MACHINE} == "i386" || ${MACHINE} == "bebox" || ${MACHINE} == "ofppc")
PROG= fdisk
SRCS= fdisk.c
DPADD+= ${LIBUTIL}
LDADD+= -lutil
SUBDIR+= mbr_bootsel
.endif
MAN= fdisk.8
.include <bsd.prog.mk>