de78c288db
This should solve the problem of modifying a busy MBR.
17 lines
213 B
Makefile
17 lines
213 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= fdisk
|
|
SRCS= fdisk.c geom_mbr_enc.c
|
|
WARNS?= 4
|
|
MAN= fdisk.8
|
|
|
|
.PATH: ${.CURDIR}/../../sys/geom
|
|
|
|
DPADD += ${LIBGEOM}
|
|
LDADD += -lgeom
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
test: ${PROG}
|
|
sh ${.CURDIR}/runtest.sh
|