1 # $NetBSD: Makefile,v 1.17 1995/04/23 19:27:59 ragge Exp $ 2 # @(#)Makefile 8.2 (Berkeley) 3/17/94 3 4 PROG= disklabel 5 SRCS= disklabel.c dkcksum.c 6 MAN= disklabel.5 disklabel.8 7 8 .if ${MACHINE} == "amiga" 9 CFLAGS+= -D${MACHINE} 10 .endif 11 12 .if (${MACHINE} == "i386") || (${MACHINE} == "alpha") 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