Home | History | Annotate | Line # | Download | only in fdisk
Makefile revision 1.7
      1 #	$NetBSD: Makefile,v 1.7 1997/09/14 13:52:26 lukem Exp $
      2 
      3 
      4 .if (${MACHINE} == "i386" || ${MACHINE} == "powerpc")
      5 PROG=	fdisk 
      6 SRCS=	fdisk.c
      7 
      8 .if (${MACHINE} == "i386")
      9 CFLAGS+= -DRAWPARTITION=\'d\'
     10 .endif
     11 
     12 .endif
     13 
     14 MAN=	fdisk.8
     15 
     16 WARNS=1
     17 
     18 .include <bsd.prog.mk>
     19