Home | History | Annotate | Line # | Download | only in disklabel
Makefile revision 1.23
      1 #	$NetBSD: Makefile,v 1.23 1997/03/18 21:27:16 christos 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 .if (${MACHINE} == "i386")
     11 CFLAGS+= -DNUMBOOT=2
     12 .endif
     13 
     14 .if (${MACHINE} == "hp300") || (${MACHINE} == "vax")
     15 CFLAGS+= -DNUMBOOT=1
     16 .endif
     17 
     18 .if ${MACHINE} == "i386"
     19 CFLAGS+= -DRAWPARTITION=\'d\'
     20 .endif
     21 
     22 .include <bsd.prog.mk>
     23