Home | History | Annotate | Line # | Download | only in fdisk
Makefile revision 1.23
      1  1.23      uch #	$NetBSD: Makefile,v 1.23 2002/05/09 18:16:16 uch Exp $
      2   1.1      cgd 
      3  1.12     ross SUBDIR=	mbr
      4  1.14    enami .if ${MACHINE} == "i386"
      5  1.14    enami SUBDIR+= mbr_bootsel
      6  1.14    enami .endif
      7   1.5      mrg 
      8  1.22  thorpej .if (${MACHINE} == "i386" || \
      9  1.22  thorpej      ${MACHINE} == "bebox" || \
     10  1.22  thorpej      ${MACHINE} == "cobalt" || \
     11  1.22  thorpej      ${MACHINE} == "ofppc" || \
     12  1.22  thorpej      ${MACHINE} == "hpcmips" || \
     13  1.23      uch      ${MACHINE} == "hpcsh" || \
     14  1.22  thorpej      ${MACHINE} == "arc" || \
     15  1.22  thorpej      ${MACHINE} == "prep" || \
     16  1.22  thorpej      ${MACHINE} == "playstation2" || \
     17  1.22  thorpej      ${MACHINE} == "mvmeppc" || \
     18  1.22  thorpej      ${MACHINE} == "netwinder")
     19   1.1      cgd PROG=	fdisk 
     20   1.1      cgd SRCS=	fdisk.c
     21   1.9    lukem DPADD+=	${LIBUTIL}
     22   1.9    lukem LDADD+=	-lutil
     23  1.10       ws .endif
     24   1.5      mrg 
     25   1.3      cgd MAN=	fdisk.8
     26  1.17     soda 
     27  1.17     soda .if ${MACHINE} == "arc"
     28  1.17     soda CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rsd0d"'
     29  1.22  thorpej .endif
     30  1.22  thorpej 
     31  1.22  thorpej .if ${MACHINE} == "netwinder"
     32  1.22  thorpej CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rwd0c"'
     33  1.17     soda .endif
     34   1.1      cgd 
     35   1.1      cgd .include <bsd.prog.mk>
     36  1.10       ws .include <bsd.subdir.mk>
     37