Home | History | Annotate | Line # | Download | only in fdisk
Makefile revision 1.17
      1 #	$NetBSD: Makefile,v 1.17 2000/01/31 15:54:48 soda Exp $
      2 
      3 SUBDIR=	mbr
      4 .if ${MACHINE} == "i386"
      5 SUBDIR+= mbr_bootsel
      6 .endif
      7 
      8 .if (${MACHINE} == "i386" || ${MACHINE} == "bebox" || \
      9     ${MACHINE} == "ofppc" || ${MACHINE} == "hpcmips" || ${MACHINE} == "arc")
     10 PROG=	fdisk 
     11 SRCS=	fdisk.c
     12 DPADD+=	${LIBUTIL}
     13 LDADD+=	-lutil
     14 .endif
     15 
     16 MAN=	fdisk.8
     17 
     18 .if ${MACHINE} == "arc"
     19 CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rsd0d"'
     20 .endif
     21 
     22 .include <bsd.prog.mk>
     23 .include <bsd.subdir.mk>
     24