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