56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.49 2003/11/10 09:22:09 fvdl Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 3/17/94
|
|
|
|
PROG= disklabel
|
|
SRCS= disklabel.c dkcksum.c interact.c printlabel.c
|
|
MAN= disklabel.5 disklabel.8
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
.if (${MACHINE} == "i386" || ${MACHINE} == "amd64")
|
|
# recognize old partition ID for a while
|
|
CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
|
|
# use MBR partition info
|
|
CPPFLAGS+= -DUSE_MBR
|
|
.endif
|
|
|
|
.if (${MACHINE} == "hp300") || (${MACHINE} == "vax") \
|
|
|| (${MACHINE} == "arm32")
|
|
CPPFLAGS+= -DNUMBOOT=1
|
|
.endif
|
|
|
|
# these have additional requirements on the alignment of a partition
|
|
.if (${MACHINE} == "sparc") || (${MACHINE} == "sparc64") \
|
|
|| (${MACHINE} == "sun3")
|
|
CPPFLAGS+= -DSTRICT_CYLINDER_ALIGNMENT
|
|
.endif
|
|
|
|
.if (${MACHINE} == "alpha") || (${MACHINE} == "x68k")
|
|
# read in the old boot area even though we don't support writing the boot
|
|
# area with disklabel(8).
|
|
CPPFLAGS+= -DSAVEBOOTAREA
|
|
.endif
|
|
|
|
.if (${MACHINE} == "hpcmips") || (${MACHINE} == "arc") \
|
|
|| (${MACHINE} == "prep") || (${MACHINE} == "cobalt") \
|
|
|| (${MACHINE} == "macppc") || (${MACHINE} == "acorn26") \
|
|
|| (${MACHINE} == "evbarm") || (${MACHINE} == "hpcarm") \
|
|
|| (${MACHINE} == "netwinder") || (${MACHINE} == "acorn32") \
|
|
|| (${MACHINE} == "cats") || (${MACHINE} == "shark") \
|
|
|| (${MACHINE} == "playstation2")
|
|
# recognize old partition ID for a while
|
|
CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
|
|
# use MBR partition info
|
|
CPPFLAGS+= -DUSE_MBR
|
|
# read in the old boot area even though we don't support writing the boot
|
|
# area with disklabel(8).
|
|
CPPFLAGS+= -DSAVEBOOTAREA
|
|
.endif
|
|
|
|
.if (${MACHINE} == "acorn32" || ${MACHINE} == "acorn26")
|
|
# Support FileCore boot block
|
|
CPPFLAGS+= -DUSE_ACORN
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|