1 # from: @(#)Makefile 8.2 (Berkeley) 3/17/94 2 # $Id: Makefile,v 1.12 1994/12/22 10:43:53 cgd Exp $ 3 4 .include <bsd.own.mk> 5 6 PROG= disklabel 7 SRCS= disklabel.c dkcksum.c 8 MAN= disklabel.5 disklabel.8 9 10 .if ${MACHINE} == "amiga" 11 CFLAGS+= -D${MACHINE} 12 .endif 13 14 .if ${MACHINE} == "i386" 15 CFLAGS+= -DNUMBOOT=2 16 .endif 17 18 .if ${MACHINE} == "hp300" 19 CFLAGS+= -DNUMBOOT=1 20 .endif 21 22 .if ${MACHINE} == "i386" 23 CFLAGS+= -DRAWPARTITION=\'d\' 24 .endif 25 26 .include <bsd.prog.mk> 27