Home | History | Annotate | Line # | Download | only in disklabel
Makefile revision 1.24
      1 #	$NetBSD: Makefile,v 1.24 1997/06/07 00:47:27 perry Exp $
      2 #	@(#)Makefile	8.2 (Berkeley) 3/17/94
      3 
      4 PROG=	disklabel
      5 SRCS=	disklabel.c dkcksum.c interact.c
      6 MAN=	disklabel.5 disklabel.8
      7 LDADD+= -lutil
      8 DPADD+= ${LIBUTIL}
      9 
     10 # XXX new boot blocks don't need this; we'll leave it for a while. --pm
     11 #.if (${MACHINE} == "i386")
     12 #CFLAGS+= -DNUMBOOT=2
     13 #.endif
     14 
     15 .if (${MACHINE} == "hp300") || (${MACHINE} == "vax")
     16 CFLAGS+= -DNUMBOOT=1
     17 .endif
     18 
     19 .if ${MACHINE} == "i386"
     20 CFLAGS+= -DRAWPARTITION=\'d\'
     21 .endif
     22 
     23 .include <bsd.prog.mk>
     24