NetBSD/sbin/disklabel/Makefile

63 lines
1.6 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.66 2009/12/13 05:01:32 nakayama Exp $
# @(#)Makefile 8.2 (Berkeley) 3/17/94
1993-03-21 12:45:37 +03:00
PROG= disklabel
SRCS= main.c dkcksum.c interact.c printlabel.c
1994-12-22 12:57:51 +03:00
MAN= disklabel.5 disklabel.8
.if (${HOSTPROG:U} == "")
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.endif
1993-03-21 12:45:37 +03:00
1999-04-09 20:00:17 +04:00
# these have additional requirements on the alignment of a partition
.if (${MACHINE} == "sparc") || (${MACHINE} == "sparc64") \
|| (${MACHINE} == "sun3")
CPPFLAGS+= -DSTRICT_CYLINDER_ALIGNMENT
.endif
.if ( 0 \
|| ${MACHINE} == "acorn26" \
|| ${MACHINE} == "acorn32" \
|| ${MACHINE} == "amd64" \
|| ${MACHINE} == "arc" \
|| ${MACHINE} == "cats" \
|| ${MACHINE} == "cobalt" \
|| ${MACHINE} == "dreamcast" \
|| ${MACHINE} == "evbarm" \
|| ${MACHINE} == "evbsh3" \
|| ${MACHINE} == "hpcarm" \
|| ${MACHINE} == "hpcmips" \
|| ${MACHINE} == "hpcsh" \
|| ${MACHINE} == "i386" \
|| ${MACHINE} == "iyonix" \
2006-09-02 01:44:02 +04:00
|| ${MACHINE} == "landisk" \
|| ${MACHINE} == "macppc" \
|| ${MACHINE} == "mmeye" \
|| ${MACHINE} == "netwinder" \
|| ${MACHINE} == "prep" \
|| ${MACHINE} == "shark" \
2006-12-18 16:39:10 +03:00
|| ${MACHINE} == "zaurus" \
)
1999-10-11 09:28:04 +04:00
# use MBR partition info
CPPFLAGS+= -DUSE_MBR
# recognize old MBR partition ID for a while
CPPFLAGS+= -DCOMPAT_386BSD_MBRPART
1999-10-11 09:28:04 +04:00
.endif
2002-03-25 01:25:27 +03:00
.if (${MACHINE} == "acorn32" || ${MACHINE} == "acorn26")
# Support FileCore boot block
CPPFLAGS+= -DUSE_ACORN
.endif
.if (${MACHINE_ARCH} == "alpha")
# alpha requires boot block checksum
CPPFLAGS+= -DALPHA_BOOTBLOCK_CKSUM
.endif
.if (${MACHINE_ARCH} == "vax")
# vax requires labels in alternative sectors on SMD disk
CPPFLAGS+= -DVAX_ALTLABELS
.endif
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>