1999-10-11 09:28:04 +04:00
|
|
|
# $NetBSD: Makefile,v 1.34 1999/10/11 05:28:04 shin Exp $
|
1995-03-18 17:54:19 +03:00
|
|
|
# @(#)Makefile 8.2 (Berkeley) 3/17/94
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
PROG= disklabel
|
1997-03-09 02:46:08 +03:00
|
|
|
SRCS= disklabel.c dkcksum.c interact.c
|
1994-12-22 12:57:51 +03:00
|
|
|
MAN= disklabel.5 disklabel.8
|
1997-03-09 03:14:17 +03:00
|
|
|
LDADD+= -lutil
|
|
|
|
DPADD+= ${LIBUTIL}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-03-02 19:26:47 +03:00
|
|
|
# recognize old partition ID for a while
|
|
|
|
.if (${MACHINE} == "i386")
|
|
|
|
CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
|
|
|
|
.endif
|
1994-06-24 17:48:17 +04:00
|
|
|
|
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
|
1994-06-24 17:48:17 +04:00
|
|
|
.endif
|
|
|
|
|
1999-04-09 20:00:17 +04:00
|
|
|
# these have additional requirements on the alignment of a partition
|
1999-01-21 14:58:00 +03:00
|
|
|
.if (${MACHINE} == "sparc") || (${MACHINE} == "sparc64") \
|
|
|
|
|| (${MACHINE} == "sun3")
|
|
|
|
CPPFLAGS+= -DSTRICT_CYLINDER_ALIGNMENT
|
|
|
|
.endif
|
|
|
|
|
1999-06-03 05:58:51 +04:00
|
|
|
.if (${MACHINE} == "alpha")
|
|
|
|
# read in the old boot area even though we don't support writing the boot
|
|
|
|
# area with disklabel(8).
|
|
|
|
CPPFLAGS+= -DSAVEBOOTAREA
|
|
|
|
.endif
|
|
|
|
|
1999-10-11 09:28:04 +04:00
|
|
|
.if (${MACHINE} == "hpcmips")
|
|
|
|
# recognize old partition ID for a while
|
|
|
|
CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
|
|
|
|
# use MBR partition info
|
|
|
|
CPPFLAGS+= -DUSE_MBR
|
|
|
|
.endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.prog.mk>
|