xref: /netbsd-src/sbin/disklabel/Makefile (revision 2a399c6883d870daece976daec6ffa7bb7f934ce)
1#	$NetBSD: Makefile,v 1.29 1997/10/18 07:28:47 mark Exp $
2#	@(#)Makefile	8.2 (Berkeley) 3/17/94
3
4PROG=	disklabel
5SRCS=	disklabel.c dkcksum.c interact.c
6MAN=	disklabel.5 disklabel.8
7LDADD+= -lutil
8DPADD+= ${LIBUTIL}
9
10# XXX new boot blocks don't need this; we'll leave it for a while. --pm
11#.if (${MACHINE} == "i386")
12#CPPFLAGS+= -DNUMBOOT=2
13#.endif
14
15.if (${MACHINE} == "hp300") || (${MACHINE} == "vax") \
16	|| (${MACHINE} == "arm32")
17CPPFLAGS+= -DNUMBOOT=1
18.endif
19
20.include <bsd.prog.mk>
21