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