20 lines
453 B
Makefile
20 lines
453 B
Makefile
# $NetBSD: Makefile,v 1.27 1997/09/25 05:13:01 lukem Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 3/17/94
|
|
|
|
PROG= disklabel
|
|
SRCS= disklabel.c dkcksum.c interact.c
|
|
MAN= disklabel.5 disklabel.8
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
# XXX new boot blocks don't need this; we'll leave it for a while. --pm
|
|
#.if (${MACHINE} == "i386")
|
|
#CFLAGS+= -DNUMBOOT=2
|
|
#.endif
|
|
|
|
.if (${MACHINE} == "hp300") || (${MACHINE} == "vax")
|
|
CFLAGS+= -DNUMBOOT=1
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|