Home | History | Annotate | Line # | Download | only in disklabel
Makefile revision 1.29
      1 #	$NetBSD: Makefile,v 1.29 1997/10/18 07:28:47 mark 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 #CPPFLAGS+= -DNUMBOOT=2
     13 #.endif
     14 
     15 .if (${MACHINE} == "hp300") || (${MACHINE} == "vax") \
     16 	|| (${MACHINE} == "arm32")
     17 CPPFLAGS+= -DNUMBOOT=1
     18 .endif
     19 
     20 .include <bsd.prog.mk>
     21