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