Makefile revision 1.12
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 6PROG= disklabel 7SRCS= disklabel.c dkcksum.c 8MAN= disklabel.5 disklabel.8 9 10.if ${MACHINE} == "amiga" 11CFLAGS+= -D${MACHINE} 12.endif 13 14.if ${MACHINE} == "i386" 15CFLAGS+= -DNUMBOOT=2 16.endif 17 18.if ${MACHINE} == "hp300" 19CFLAGS+= -DNUMBOOT=1 20.endif 21 22.if ${MACHINE} == "i386" 23CFLAGS+= -DRAWPARTITION=\'d\' 24.endif 25 26.include <bsd.prog.mk> 27