NetBSD/sbin/fdisk/Makefile

31 lines
553 B
Makefile

# $NetBSD: Makefile,v 1.43 2019/10/13 07:28:12 mrg Exp $
PROG= fdisk
SRCS= fdisk.c
MAN= fdisk.8
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
CPPFLAGS+= -DBOOTSEL
.if (${HOSTPROG:U} == "")
CPPFLAGS+= -DUSE_DISKLIST
.endif
.endif
.if ${MACHINE} == "arc"
CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rsd0d"'
.endif
.if ${MACHINE} == "netwinder"
CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rwd0c"'
.endif
COPTS.fdisk.c+= ${GCC_NO_STRINGOP_TRUNCATION}
.include <bsd.prog.mk>
.if (${HOSTPROG:U} == "")
DPADD+= ${LIBUTIL} ${LIBZ}
LDADD+= -lutil -lz
.endif