NetBSD/sbin/disklabel/Makefile

21 lines
468 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.30 1998/03/02 16:26:47 drochner Exp $
# @(#)Makefile 8.2 (Berkeley) 3/17/94
1993-03-21 12:45:37 +03:00
PROG= disklabel
SRCS= disklabel.c dkcksum.c interact.c
1994-12-22 12:57:51 +03:00
MAN= disklabel.5 disklabel.8
LDADD+= -lutil
DPADD+= ${LIBUTIL}
1993-03-21 12:45:37 +03:00
# recognize old partition ID for a while
.if (${MACHINE} == "i386")
CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
.endif
1997-10-18 11:28:47 +04:00
.if (${MACHINE} == "hp300") || (${MACHINE} == "vax") \
|| (${MACHINE} == "arm32")
1997-10-10 23:47:50 +04:00
CPPFLAGS+= -DNUMBOOT=1
.endif
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>