Home | History | Annotate | Line # | Download | only in fdisk
Makefile revision 1.38.2.2
      1  1.38.2.2  dsl #	$NetBSD: Makefile,v 1.38.2.2 2007/11/29 23:19:26 dsl Exp $
      2  1.38.2.2  dsl 
      3  1.38.2.2  dsl WARS=	4
      4  1.38.2.2  dsl PROG=	fdisk 
      5  1.38.2.2  dsl SRCS=	fdisk.c
      6  1.38.2.2  dsl 
      7  1.38.2.2  dsl MAN=	fdisk.8
      8  1.38.2.2  dsl 
      9  1.38.2.2  dsl .if ${MACHINE} == "arc"
     10  1.38.2.2  dsl CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rsd0d"'
     11  1.38.2.2  dsl .endif
     12  1.38.2.2  dsl 
     13  1.38.2.2  dsl .if ${MACHINE} == "netwinder"
     14  1.38.2.2  dsl CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rwd0c"'
     15  1.38.2.2  dsl .endif
     16  1.38.2.2  dsl 
     17  1.38.2.2  dsl .include <bsd.prog.mk>
     18  1.38.2.2  dsl 
     19  1.38.2.2  dsl .if (${HOSTPROG:U} == "")
     20  1.38.2.2  dsl SUBDIR=	mbr
     21  1.38.2.2  dsl DPADD+=	${LIBUTIL}
     22  1.38.2.2  dsl LDADD+=	-lutil
     23  1.38.2.2  dsl .include <bsd.subdir.mk>
     24  1.38.2.2  dsl .endif
     25