NetBSD/sbin/fdisk/Makefile

26 lines
418 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.33 2005/06/12 19:14:10 dyoung Exp $
.if (${HOSTPROG:U} == "")
SUBDIR= mbr
.endif
1997-06-23 08:23:46 +04:00
PROG= fdisk
SRCS= fdisk.c
DPADD+= ${LIBUTIL}
LDADD+= -lutil
1994-12-22 13:44:04 +03:00
MAN= fdisk.8
2000-01-31 18:54:48 +03:00
.if ${MACHINE} == "arc"
CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rsd0d"'
.endif
2002-04-03 07:17:36 +04:00
.if ${MACHINE} == "netwinder"
CPPFLAGS+= -D_PATH_DEFDISK='"/dev/rwd0c"'
.endif
.include <bsd.prog.mk>
.if (${HOSTPROG:U} == "")
1998-10-15 19:23:23 +04:00
.include <bsd.subdir.mk>
.endif