25 lines
479 B
Makefile
25 lines
479 B
Makefile
# $NetBSD: Makefile,v 1.17 1995/04/23 19:27:59 ragge Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 3/17/94
|
|
|
|
PROG= disklabel
|
|
SRCS= disklabel.c dkcksum.c
|
|
MAN= disklabel.5 disklabel.8
|
|
|
|
.if ${MACHINE} == "amiga"
|
|
CFLAGS+= -D${MACHINE}
|
|
.endif
|
|
|
|
.if (${MACHINE} == "i386") || (${MACHINE} == "alpha")
|
|
CFLAGS+= -DNUMBOOT=2
|
|
.endif
|
|
|
|
.if (${MACHINE} == "hp300") || (${MACHINE} == "vax")
|
|
CFLAGS+= -DNUMBOOT=1
|
|
.endif
|
|
|
|
.if ${MACHINE} == "i386"
|
|
CFLAGS+= -DRAWPARTITION=\'d\'
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|